summaryrefslogtreecommitdiffstats
path: root/node_modules/es-abstract/2015/msFromTime.js
blob: c31eda085655f2f5a5c51e4270c29f50a1701e52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
'use strict';

var mod = require('../helpers/mod');
var msPerSecond = require('../helpers/timeConstants').msPerSecond;

// https://ecma-international.org/ecma-262/5.1/#sec-15.9.1.10

module.exports = function msFromTime(t) {
	return mod(t, msPerSecond);
};