Welcome to mirror list, hosted at ThFree Co, Russian Federation.

msFromTime.js « 2016 « es-abstract « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c31eda085655f2f5a5c51e4270c29f50a1701e52 (plain)
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);
};