Initial Save
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.date.get-year');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Date', 'getYear');
|
||||
+12
@@ -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
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.date.now');
|
||||
var path = require('../../internals/path');
|
||||
|
||||
module.exports = path.Date.now;
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.date.set-year');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Date', 'setYear');
|
||||
+5
@@ -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
@@ -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
@@ -0,0 +1,5 @@
|
||||
'use strict';
|
||||
require('../../modules/es.date.to-json');
|
||||
var entryUnbind = require('../../internals/entry-unbind');
|
||||
|
||||
module.exports = entryUnbind('Date', 'toJSON');
|
||||
+6
@@ -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
@@ -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);
|
||||
Reference in New Issue
Block a user