Initial commit

This commit is contained in:
2025-03-07 19:22:02 +01:00
commit 4a98255d83
55743 changed files with 5280367 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.date.get-year');
var entryUnbind = require('../../internals/entry-unbind');
module.exports = entryUnbind('Date', 'getYear');
+12
View File
@@ -0,0 +1,12 @@
'use strict';
require('../../modules/es.date.get-year');
require('../../modules/es.date.now');
require('../../modules/es.date.set-year');
require('../../modules/es.date.to-gmt-string');
require('../../modules/es.date.to-iso-string');
require('../../modules/es.date.to-json');
require('../../modules/es.date.to-string');
require('../../modules/es.date.to-primitive');
var path = require('../../internals/path');
module.exports = path.Date;
+5
View File
@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.date.now');
var path = require('../../internals/path');
module.exports = path.Date.now;
+5
View File
@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.date.set-year');
var entryUnbind = require('../../internals/entry-unbind');
module.exports = entryUnbind('Date', 'setYear');
+5
View File
@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.date.to-gmt-string');
var entryUnbind = require('../../internals/entry-unbind');
module.exports = entryUnbind('Date', 'toGMTString');
+6
View File
@@ -0,0 +1,6 @@
'use strict';
require('../../modules/es.date.to-iso-string');
require('../../modules/es.date.to-json');
var entryUnbind = require('../../internals/entry-unbind');
module.exports = entryUnbind('Date', 'toISOString');
+5
View File
@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.date.to-json');
var entryUnbind = require('../../internals/entry-unbind');
module.exports = entryUnbind('Date', 'toJSON');
+6
View File
@@ -0,0 +1,6 @@
'use strict';
require('../../modules/es.date.to-primitive');
var uncurryThis = require('../../internals/function-uncurry-this');
var toPrimitive = require('../../internals/date-to-primitive');
module.exports = uncurryThis(toPrimitive);
+5
View File
@@ -0,0 +1,5 @@
'use strict';
require('../../modules/es.date.to-string');
var uncurryThis = require('../../internals/function-uncurry-this');
module.exports = uncurryThis(Date.prototype.toString);