blob: 2bba83386c141873d3b603ed19d0f37069d1016a [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2
3var modulo = require('./modulo');
4
5var msPerDay = require('../helpers/timeConstants').msPerDay;
6
7// https://262.ecma-international.org/5.1/#sec-15.9.1.2
8
9module.exports = function TimeWithinDay(t) {
10 return modulo(t, msPerDay);
11};
12