mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-04 04:40:05 +02:00
add some packages
This commit is contained in:
12
node_modules/core-js/modules/es6.date.to-string.js
generated
vendored
Normal file
12
node_modules/core-js/modules/es6.date.to-string.js
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
var DateProto = Date.prototype;
|
||||
var INVALID_DATE = 'Invalid Date';
|
||||
var TO_STRING = 'toString';
|
||||
var $toString = DateProto[TO_STRING];
|
||||
var getTime = DateProto.getTime;
|
||||
if (new Date(NaN) + '' != INVALID_DATE) {
|
||||
require('./_redefine')(DateProto, TO_STRING, function toString() {
|
||||
var value = getTime.call(this);
|
||||
// eslint-disable-next-line no-self-compare
|
||||
return value === value ? $toString.call(this) : INVALID_DATE;
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user