mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
18 lines
614 B
JavaScript
18 lines
614 B
JavaScript
var redefine = require('../internals/redefine');
|
|
|
|
var DatePrototype = Date.prototype;
|
|
var INVALID_DATE = 'Invalid Date';
|
|
var TO_STRING = 'toString';
|
|
var nativeDateToString = DatePrototype[TO_STRING];
|
|
var getTime = DatePrototype.getTime;
|
|
|
|
// `Date.prototype.toString` method
|
|
// https://tc39.es/ecma262/#sec-date.prototype.tostring
|
|
if (String(new Date(NaN)) != INVALID_DATE) {
|
|
redefine(DatePrototype, TO_STRING, function toString() {
|
|
var value = getTime.call(this);
|
|
// eslint-disable-next-line no-self-compare -- NaN check
|
|
return value === value ? nativeDateToString.call(this) : INVALID_DATE;
|
|
});
|
|
}
|