Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TimeFromYear.js « 2019 « es-abstract « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: df646c36e315f536a65dfe259e17741510ad4657 (plain)
1
2
3
4
5
6
7
8
9
10
11
'use strict';

var msPerDay = require('../helpers/timeConstants').msPerDay;

var DayFromYear = require('./DayFromYear');

// https://ecma-international.org/ecma-262/5.1/#sec-15.9.1.3

module.exports = function TimeFromYear(y) {
	return msPerDay * DayFromYear(y);
};