mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
10 lines
376 B
JavaScript
10 lines
376 B
JavaScript
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
|
|
});
|