You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Day.js 299B

12345678910111213
  1. 'use strict';
  2. var GetIntrinsic = require('../GetIntrinsic');
  3. var $floor = GetIntrinsic('%Math.floor%');
  4. var msPerDay = require('../helpers/timeConstants').msPerDay;
  5. // https://ecma-international.org/ecma-262/5.1/#sec-15.9.1.2
  6. module.exports = function Day(t) {
  7. return $floor(t / msPerDay);
  8. };