source: imaps-frontend/node_modules/es-abstract/2024/DayFromYear.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: 256 bytes
Line 
1'use strict';
2
3var floor = require('./floor');
4
5// https://262.ecma-international.org/5.1/#sec-15.9.1.3
6
7module.exports = function DayFromYear(y) {
8 return (365 * (y - 1970)) + floor((y - 1969) / 4) - floor((y - 1901) / 100) + floor((y - 1601) / 400);
9};
10
Note: See TracBrowser for help on using the repository browser.