mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
15 lines
407 B
JavaScript
15 lines
407 B
JavaScript
'use strict';
|
|
|
|
var floor = require('./floor');
|
|
var modulo = require('./modulo');
|
|
|
|
var timeConstants = require('../helpers/timeConstants');
|
|
var msPerSecond = timeConstants.msPerSecond;
|
|
var SecondsPerMinute = timeConstants.SecondsPerMinute;
|
|
|
|
// https://ecma-international.org/ecma-262/5.1/#sec-15.9.1.10
|
|
|
|
module.exports = function SecFromTime(t) {
|
|
return modulo(floor(t / msPerSecond), SecondsPerMinute);
|
|
};
|