k94314517
2025-04-22 0c1e0ce669b87cb46461682cb7fe5507c9ef7952
1
2
3
4
5
6
7
8
9
10
'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
});