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
|
Rev | Line | |
---|
[d565449] | 1 | 'use strict';
|
---|
| 2 |
|
---|
| 3 | var GetIntrinsic = require('get-intrinsic');
|
---|
| 4 |
|
---|
| 5 | var $Date = GetIntrinsic('%Date%');
|
---|
| 6 |
|
---|
| 7 | var callBound = require('call-bind/callBound');
|
---|
| 8 |
|
---|
| 9 | var $getUTCFullYear = callBound('Date.prototype.getUTCFullYear');
|
---|
| 10 |
|
---|
| 11 | // https://262.ecma-international.org/5.1/#sec-15.9.1.3
|
---|
| 12 |
|
---|
| 13 | module.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.