Projekt

Obecné

Profil

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

    
3
var mod = require('../helpers/mod');
4
var msPerDay = require('../helpers/timeConstants').msPerDay;
5

    
6
// https://ecma-international.org/ecma-262/5.1/#sec-15.9.1.2
7

    
8
module.exports = function TimeWithinDay(t) {
9
	return mod(t, msPerDay);
10
};
11

    
(87-87/117)