source: imaps-frontend/node_modules/es-abstract/2015/YearFromTime.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: 407 bytes
Line 
1'use strict';
2
3var GetIntrinsic = require('get-intrinsic');
4
5var $Date = GetIntrinsic('%Date%');
6
7var callBound = require('call-bind/callBound');
8
9var $getUTCFullYear = callBound('Date.prototype.getUTCFullYear');
10
11// https://262.ecma-international.org/5.1/#sec-15.9.1.3
12
13module.exports = function YearFromTime(t) {
14 // largest y such that this.TimeFromYear(y) <= t
15 return $getUTCFullYear(new $Date(t));
16};
Note: See TracBrowser for help on using the repository browser.