Projekt

Obecné

Profil

Stáhnout (467 Bajtů) Statistiky
| Větev: | Revize:
1
'use strict';
2

    
3
var GetIntrinsic = require('../GetIntrinsic');
4

    
5
var $floor = GetIntrinsic('%Math.floor%');
6

    
7
var mod = require('../helpers/mod');
8
var timeConstants = require('../helpers/timeConstants');
9
var msPerSecond = timeConstants.msPerSecond;
10
var SecondsPerMinute = timeConstants.SecondsPerMinute;
11

    
12
// https://ecma-international.org/ecma-262/5.1/#sec-15.9.1.10
13

    
14
module.exports = function SecFromTime(t) {
15
	return mod($floor(t / msPerSecond), SecondsPerMinute);
16
};
(21-21/40)