linwenling
2023-10-22 cf948b62048be5f217623cc31a0d6d2680c72476
1
2
3
4
5
6
7
8
9
10
11
'use strict';
 
var msPerDay = require('../helpers/timeConstants').msPerDay;
 
var DayFromYear = require('./DayFromYear');
 
// https://262.ecma-international.org/5.1/#sec-15.9.1.3
 
module.exports = function TimeFromYear(y) {
    return msPerDay * DayFromYear(y);
};