mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2024-11-16 04:43:05 +00:00
15 lines
407 B
JavaScript
Generated
15 lines
407 B
JavaScript
Generated
'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);
|
|
};
|