Server IP : 85.214.239.14 / Your IP : 216.73.216.250 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/node_modules/pm2/node_modules/@pm2/agent/node_modules/dayjs/esm/plugin/objectSupport/ |
Upload File : |
export default (function (o, c) { var proto = c.prototype; var isObject = function isObject(obj) { return !(obj instanceof Date) && !(obj instanceof Array) && obj instanceof Object; }; var prettyUnit = function prettyUnit(u) { var unit = proto.$utils().p(u); return unit === 'date' ? 'day' : unit; }; var parseDate = function parseDate(cfg) { var date = cfg.date, utc = cfg.utc; var $d = {}; if (isObject(date)) { Object.keys(date).forEach(function (k) { $d[prettyUnit(k)] = date[k]; }); var y = $d.year || 1970; var M = $d.month - 1 || 0; var d = $d.day || 1; var h = $d.hour || 0; var m = $d.minute || 0; var s = $d.second || 0; var ms = $d.millisecond || 0; if (utc) { return new Date(Date.UTC(y, M, d, h, m, s, ms)); } return new Date(y, M, d, h, m, s, ms); } return date; }; var oldParse = proto.parse; proto.parse = function (cfg) { cfg.date = parseDate.bind(this)(cfg); oldParse.bind(this)(cfg); }; var oldSet = proto.set; var oldAdd = proto.add; var callObject = function callObject(call, argument, string, offset) { if (offset === void 0) { offset = 1; } if (argument instanceof Object) { var keys = Object.keys(argument); var chain = this; keys.forEach(function (key) { chain = call.bind(chain)(argument[key] * offset, key); }); return chain; } return call.bind(this)(argument * offset, string); }; proto.set = function (string, _int) { _int = _int === undefined ? string : _int; return callObject.bind(this)(function (i, s) { return oldSet.bind(this)(s, i); }, _int, string); }; proto.add = function (number, string) { return callObject.bind(this)(oldAdd, number, string); }; proto.subtract = function (number, string) { return callObject.bind(this)(oldAdd, number, string, -1); }; });