PIbd-22_Kaznacheeva.E.K_Int.../lab2/node_modules/es-abstract/2019/msFromTime.js

12 lines
253 B
JavaScript
Raw Permalink Normal View History

2023-11-24 14:53:57 +04:00
'use strict';
var modulo = require('./modulo');
var msPerSecond = require('../helpers/timeConstants').msPerSecond;
// https://262.ecma-international.org/5.1/#sec-15.9.1.10
module.exports = function msFromTime(t) {
return modulo(t, msPerSecond);
};