source: imaps-frontend/node_modules/es-abstract/2016/HourFromTime.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 382 bytes
Line 
1'use strict';
2
3var floor = require('./floor');
4var modulo = require('./modulo');
5
6var timeConstants = require('../helpers/timeConstants');
7var msPerHour = timeConstants.msPerHour;
8var HoursPerDay = timeConstants.HoursPerDay;
9
10// https://262.ecma-international.org/5.1/#sec-15.9.1.10
11
12module.exports = function HourFromTime(t) {
13 return modulo(floor(t / msPerHour), HoursPerDay);
14};
Note: See TracBrowser for help on using the repository browser.