blob: a6bae767aed31c8a467b8ea1fb2128e64860a972 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2
3var modulo = require('./modulo');
4
5var msPerSecond = require('../helpers/timeConstants').msPerSecond;
6
7// https://262.ecma-international.org/5.1/#sec-15.9.1.10
8
9module.exports = function msFromTime(t) {
10 return modulo(t, msPerSecond);
11};