You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
2.2 KiB
53 lines
2.2 KiB
!(function (e, t) {
|
|
if ('object' == typeof exports && 'undefined' != typeof module) {
|
|
module.exports = t();
|
|
} else {
|
|
if ('function' == typeof define && define.amd) {
|
|
define(t);
|
|
} else {
|
|
(e = 'undefined' != typeof globalThis ? globalThis : e || self).dayjs_plugin_devHelper = t();
|
|
}
|
|
}
|
|
})(this, function () {
|
|
'use strict';
|
|
|
|
return function (e, t, o) {
|
|
if (!process || 'production' !== process.env.NODE_ENV) {
|
|
var s = t.prototype;
|
|
var n = s.parse;
|
|
s.parse = function (e) {
|
|
var t = e.date;
|
|
if ('string' == typeof t && 13 === t.length) {
|
|
console.warn('To parse a Unix timestamp like ' + t + ', you should pass it as a Number. https://day.js.org/docs/en/parse/unix-timestamp-milliseconds');
|
|
}
|
|
if ('number' == typeof t && 4 === String(t).length) {
|
|
console.warn(
|
|
'Guessing you may want to parse the Year ' +
|
|
t +
|
|
', you should pass it as a String ' +
|
|
t +
|
|
', not a Number. Otherwise, ' +
|
|
t +
|
|
' will be treated as a Unix timestamp'
|
|
);
|
|
}
|
|
if (e.args.length >= 2 && !o.p.customParseFormat) {
|
|
console.warn(
|
|
'To parse a date-time string like ' +
|
|
t +
|
|
' using the given format, you should enable customParseFormat plugin first. https://day.js.org/docs/en/parse/string-format'
|
|
);
|
|
}
|
|
return n.bind(this)(e);
|
|
};
|
|
var a = o.locale;
|
|
o.locale = function (e, t, s) {
|
|
if (void 0 === t && 'string' == typeof e) {
|
|
o.Ls[e] ||
|
|
console.warn('Guessing you may want to use locale ' + e + ', you have to load it before using it. https://day.js.org/docs/en/i18n/loading-into-nodejs');
|
|
}
|
|
return a(e, t, s);
|
|
};
|
|
}
|
|
};
|
|
});
|
|
|