mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-07 19:25:13 +02:00
11 lines
390 B
JavaScript
11 lines
390 B
JavaScript
'use strict';
|
|
var $ = require('../internals/export');
|
|
var toISOString = require('../internals/date-to-iso-string');
|
|
|
|
// `Date.prototype.toISOString` method
|
|
// https://tc39.es/ecma262/#sec-date.prototype.toisostring
|
|
// PhantomJS / old WebKit has a broken implementations
|
|
$({ target: 'Date', proto: true, forced: Date.prototype.toISOString !== toISOString }, {
|
|
toISOString: toISOString
|
|
});
|