Urara-Blog/node_modules/.pnpm-store/v3/files/a9/3804f22885e89b69ccef972f96475d441865a1669d5f452463c833174c198adce79d75c8e78164ae09066c4d00ae1023a192a25931d49d9d2d8a1faf499939
2022-08-14 01:14:53 +08:00

10 lines
256 B
Text

'use strict';
var floor = require('./floor');
// https://262.ecma-international.org/5.1/#sec-15.9.1.3
module.exports = function DayFromYear(y) {
return (365 * (y - 1970)) + floor((y - 1969) / 4) - floor((y - 1901) / 100) + floor((y - 1601) / 400);
};