debian-mirror-gitlab/core-js/modules/es.date.to-iso-string.js
2019-09-25 13:30:05 +05:30

10 lines
383 B
JavaScript

var $ = require('../internals/export');
var toISOString = require('../internals/date-to-iso-string');
// `Date.prototype.toISOString` method
// https://tc39.github.io/ecma262/#sec-date.prototype.toisostring
// PhantomJS / old WebKit has a broken implementations
$({ target: 'Date', proto: true, forced: Date.prototype.toISOString !== toISOString }, {
toISOString: toISOString
});