mat-date 1.9.12 → 1.9.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/dist/DateUtil.d.ts +0 -129
- package/dist/DateUtil.js +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -1
package/package.json
CHANGED
package/dist/DateUtil.d.ts
DELETED
|
@@ -1,129 +0,0 @@
|
|
|
1
|
-
interface IStrOptions {
|
|
2
|
-
localeMatcher?: "best fit" | "lookup" | undefined;
|
|
3
|
-
weekday?: "long" | "short" | "narrow" | undefined;
|
|
4
|
-
era?: "long" | "short" | "narrow" | undefined;
|
|
5
|
-
year?: "numeric" | "2-digit" | undefined;
|
|
6
|
-
month?: "numeric" | "2-digit" | "long" | "short" | "narrow" | undefined;
|
|
7
|
-
day?: "numeric" | "2-digit" | undefined;
|
|
8
|
-
hour?: "numeric" | "2-digit" | undefined;
|
|
9
|
-
minute?: "numeric" | "2-digit" | undefined;
|
|
10
|
-
second?: "numeric" | "2-digit" | undefined;
|
|
11
|
-
timeZoneName?: "short" | "long" | "shortOffset" | "longOffset" | "shortGeneric" | "longGeneric" | undefined;
|
|
12
|
-
formatMatcher?: "best fit" | "basic" | undefined;
|
|
13
|
-
hour12?: boolean | undefined;
|
|
14
|
-
timeZone?: string | undefined;
|
|
15
|
-
}
|
|
16
|
-
export declare class MDateUtil {
|
|
17
|
-
private val;
|
|
18
|
-
private _code;
|
|
19
|
-
private _zone;
|
|
20
|
-
private dyfrmt;
|
|
21
|
-
get localCode(): string;
|
|
22
|
-
get zone(): string;
|
|
23
|
-
private with;
|
|
24
|
-
private init;
|
|
25
|
-
toString(): string;
|
|
26
|
-
static new(): MDateUtil;
|
|
27
|
-
static setCode(code: string): typeof MDateUtil;
|
|
28
|
-
static setZone(zone: string): typeof MDateUtil;
|
|
29
|
-
static seperator(): string;
|
|
30
|
-
cpy(): MDateUtil;
|
|
31
|
-
setCode(code: string): this;
|
|
32
|
-
setZone(zone: string): this;
|
|
33
|
-
seperator(): string;
|
|
34
|
-
timezone(): string;
|
|
35
|
-
zones(code?: string): string[];
|
|
36
|
-
region(code?: string): string;
|
|
37
|
-
year(): number;
|
|
38
|
-
month(): number;
|
|
39
|
-
monthUtc(): number;
|
|
40
|
-
day(): number;
|
|
41
|
-
hours(): number;
|
|
42
|
-
min(): number;
|
|
43
|
-
sec(): number;
|
|
44
|
-
msec(): number;
|
|
45
|
-
dayOfWeek(): number;
|
|
46
|
-
dayOfWeekUtc(): number;
|
|
47
|
-
setYear(value: number): this;
|
|
48
|
-
setMonth(value: number): this;
|
|
49
|
-
setMonthUtc(value: number): this;
|
|
50
|
-
setDay(value: number): this;
|
|
51
|
-
setHour(value: number): this;
|
|
52
|
-
startOfHours(): this;
|
|
53
|
-
endOfHours(): this;
|
|
54
|
-
setMin(value: number): this;
|
|
55
|
-
startOfMin(): this;
|
|
56
|
-
endOfMin(): this;
|
|
57
|
-
setSeconds(value: number): this;
|
|
58
|
-
startOfSeconds(): this;
|
|
59
|
-
endOfSeconds(): this;
|
|
60
|
-
private setMilliseconds;
|
|
61
|
-
startOfMilliseconds(): this;
|
|
62
|
-
endOfMilliseconds(): this;
|
|
63
|
-
setIsoDate(value: string): this;
|
|
64
|
-
setTime(value: number): this;
|
|
65
|
-
setDate(value: Date): this;
|
|
66
|
-
setDateInputValue(value: string): this;
|
|
67
|
-
setVal(value: MDateUtil | Date | number | string): MDateUtil;
|
|
68
|
-
toIsoDate(): string;
|
|
69
|
-
toIsoDateZone(): string;
|
|
70
|
-
toTime(): number;
|
|
71
|
-
toDate(): Date;
|
|
72
|
-
toDateMounthInput(): string;
|
|
73
|
-
toDateInput(): string;
|
|
74
|
-
toTimeInput(byS?: boolean): any;
|
|
75
|
-
toDateTimeInput(byS?: boolean): string;
|
|
76
|
-
toAs(): string;
|
|
77
|
-
strDate(): string;
|
|
78
|
-
strTime(): string;
|
|
79
|
-
strHHmm(): string;
|
|
80
|
-
str(): string;
|
|
81
|
-
strLocal(options: IStrOptions): string;
|
|
82
|
-
strYears(): string;
|
|
83
|
-
strMounth(): string;
|
|
84
|
-
strDay(): string;
|
|
85
|
-
strHour(): string;
|
|
86
|
-
strMin(): string;
|
|
87
|
-
strSec(): string;
|
|
88
|
-
strMsec(): string;
|
|
89
|
-
strDayStr(): {
|
|
90
|
-
ln: () => string;
|
|
91
|
-
sh: () => string;
|
|
92
|
-
nr: () => string;
|
|
93
|
-
};
|
|
94
|
-
addDay(value: number): this;
|
|
95
|
-
addHours(value: number): this;
|
|
96
|
-
addMins(value: number): this;
|
|
97
|
-
startOfDay(): this;
|
|
98
|
-
cpyByStartOfDay(): MDateUtil;
|
|
99
|
-
endOfDay(): this;
|
|
100
|
-
cpyByEndOfDay(): MDateUtil;
|
|
101
|
-
startOfWeek(): this;
|
|
102
|
-
cpyStartOfWeek(): MDateUtil;
|
|
103
|
-
endOfWeek(): this;
|
|
104
|
-
cpyEndOfWeek(): MDateUtil;
|
|
105
|
-
startOfMonth(): this;
|
|
106
|
-
cpyByStartOfMonth(): MDateUtil;
|
|
107
|
-
endOfMonth(): this;
|
|
108
|
-
cpyByEndOfMonth(): MDateUtil;
|
|
109
|
-
eq(value: MDateUtil | Date | number | string): boolean;
|
|
110
|
-
gt(value: MDateUtil | Date | number | string): boolean;
|
|
111
|
-
gte(value: MDateUtil | Date | number | string): boolean;
|
|
112
|
-
lt(value: MDateUtil | Date | number | string): boolean;
|
|
113
|
-
lte(value: MDateUtil | Date | number | string): boolean;
|
|
114
|
-
btw(start: MDateUtil | Date | number | string, end: MDateUtil | Date | number | string): boolean;
|
|
115
|
-
btweq(start: MDateUtil | Date | number | string, end: MDateUtil | Date | number | string): boolean;
|
|
116
|
-
btwEqStart(start: MDateUtil | Date | number | string, end: MDateUtil | Date | number | string): boolean;
|
|
117
|
-
btwEqEnd(start: MDateUtil | Date | number | string, end: MDateUtil | Date | number | string): boolean;
|
|
118
|
-
static diffDays(before: MDateUtil | Date | number | string, after: MDateUtil | Date | number | string, abs?: boolean): number;
|
|
119
|
-
static diffHours(before: MDateUtil | Date | number | string, after: MDateUtil | Date | number | string, abs?: boolean): number;
|
|
120
|
-
static diffMins(before: MDateUtil | Date | number | string, after: MDateUtil | Date | number | string, abs?: boolean): number;
|
|
121
|
-
static diffSecs(before: MDateUtil | Date | number | string, after: MDateUtil | Date | number | string, abs?: boolean): number;
|
|
122
|
-
static divideTime(value: string): {
|
|
123
|
-
h: number;
|
|
124
|
-
m: number;
|
|
125
|
-
s: number;
|
|
126
|
-
ms: number;
|
|
127
|
-
};
|
|
128
|
-
}
|
|
129
|
-
export {};
|
package/dist/DateUtil.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
'use strict';const a0_0x239e53={};a0_0x239e53['value']=!![],Object['defineProperty'](exports,'__esModule',a0_0x239e53),exports['MDateUtil']=void 0x0;const a0_0x1d23d0=require('@js-temporal/polyfill'),a0_0x558bea=(_0x2d655d,_0x32c2a2=0x2)=>_0x2d655d['toString']()['padStart'](_0x32c2a2,'0');function a0_0x2829f2(_0x2c6c55,_0x335373){try{return _0x2c6c55();}catch(_0x5a0ef5){if(_0x335373)return _0x335373;throw new Error('UNKNOWN');}}function a0_0xf07824(_0x256e4d,_0x56712e){try{if(_0x256e4d instanceof Date)return a0_0x1d23d0['Temporal']['Instant']['fromEpochMilliseconds'](_0x256e4d['getTime']())['toZonedDateTimeISO'](_0x56712e)['epochMilliseconds'];if(typeof _0x256e4d==='number')return _0x256e4d;if(typeof _0x256e4d==='string')return a0_0x1d23d0['Temporal']['Instant']['fromEpochMilliseconds'](new Date(_0x256e4d)['getTime']())['toZonedDateTimeISO'](_0x56712e)['epochMilliseconds'];if(_0x256e4d instanceof a0_0x51d49d)return _0x256e4d['toTime']();if(_0x256e4d['idkey']==='MDateUtil')return _0x256e4d['toTime']();return 0x0;}catch(_0x4b2b91){throw new Error('ERROR');}}function a0_0x582e5f(_0x4ad3d9){function _0x3abed2(_0x3276dd){const _0x1cd4b6={};return _0x1cd4b6['weekday']=_0x3276dd,a0_0x2829f2(()=>new Intl['DateTimeFormat'](_0x4ad3d9['localCode'],_0x1cd4b6)['format'](a0_0xf07824(_0x4ad3d9,_0x4ad3d9['zone'])),'');}function _0x329ce9(){return _0x3abed2('long');}function _0x5c4c01(){return _0x3abed2('short');}function _0xe6afc2(){return _0x3abed2('narrow');}const _0xefa61a={};return _0xefa61a['ln']=_0x329ce9,_0xefa61a['sh']=_0x5c4c01,_0xefa61a['nr']=_0xe6afc2,_0xefa61a;}function a0_0x392557(_0x20071f){let _0x4e30f8=undefined,_0x2eb77d=undefined,_0x3d5581=undefined,_0x119e31=undefined;try{const _0x4d61b5=(_0x20071f||'')['match'](/\w{2}:\w{2}(:\w{2})?\b/g)[0x0]['split'](':');_0x4e30f8=_0x4d61b5['length']>=0x1?Number(_0x4d61b5[0x0]):undefined,_0x2eb77d=_0x4d61b5['length']>=0x2?Number(_0x4d61b5[0x1]):undefined,_0x3d5581=_0x4d61b5['length']>=0x3?Number(_0x4d61b5[0x2]):undefined;}catch(_0x342a49){}try{let _0x46a64a=_0x20071f||'',_0x262e5c=/\.\d{3}/g,_0x3ac5ee=_0x46a64a['match'](_0x262e5c)[0x0]['split']('.')['filter'](_0x403a1a=>Boolean(_0x403a1a));_0x119e31=_0x3ac5ee['length']>=0x1?Number(_0x3ac5ee[0x0]):undefined;}catch(_0x36eeee){}const _0x232b53={};return _0x232b53['h']=_0x4e30f8,_0x232b53['m']=_0x2eb77d,_0x232b53['s']=_0x3d5581,_0x232b53['ms']=_0x119e31,_0x232b53;}let a0_0x5e6cee=Intl['NumberFormat']()['resolvedOptions']()['locale'],a0_0x141411=Intl['DateTimeFormat']()['resolvedOptions']()['timeZone'];class a0_0x51d49d{['val'];['_code']=Intl['NumberFormat']()['resolvedOptions']()['locale'];['_zone']=Intl['DateTimeFormat']()['resolvedOptions']()['timeZone'];['dyfrmt']=a0_0x582e5f(this);get['localCode'](){return this['_code'];}get['zone'](){return this['_zone'];}['with'](_0xaadf9d){this['val']=this['val']['with']({'year':_0xaadf9d['getFullYear'](),'month':_0xaadf9d['getMonth']()+0x1,'day':_0xaadf9d['getDate'](),'hour':_0xaadf9d['getHours'](),'minute':_0xaadf9d['getMinutes'](),'second':_0xaadf9d['getSeconds'](),'millisecond':_0xaadf9d['getMilliseconds']()});}['init'](){const _0x383eec=new Date();return this['val']=a0_0x1d23d0['Temporal']['Instant']['from'](_0x383eec['toISOString']())['toZonedDateTimeISO'](this['zone']),this['dyfrmt']=a0_0x582e5f(this),this;}['toString'](){return'---';}static['new'](){return new a0_0x51d49d()['setCode'](a0_0x5e6cee)['setZone'](a0_0x141411)['init']();}static['setCode'](_0x3c783b){return a0_0x5e6cee=_0x3c783b,this;}static['setZone'](_0x99ec61){return a0_0x141411=_0x99ec61,this;}static['seperator'](){return a0_0x2829f2(()=>new Date()['toLocaleDateString'](a0_0x5e6cee)['replace'](/\d/g,'')['split']('')[0x0]);}['cpy'](){return a0_0x2829f2(()=>a0_0x51d49d['new']()['setTime'](this['toTime']()));}['setCode'](_0x41f3a1){return this['_code']=_0x41f3a1,this;}['setZone'](_0x5b911f){return this['_zone']=_0x5b911f,this;}['seperator'](){return a0_0x2829f2(()=>new Date()['toLocaleDateString'](this['_code'])['replace'](/\d/g,'')['split']('')[0x0]);}['timezone'](){return a0_0x2829f2(()=>{return this['zone']||Intl['DateTimeFormat']()?.['resolvedOptions']()?.['timeZone'];},null);}['zones'](_0x3eeac1=this['_code']){return a0_0x2829f2(()=>{return new Intl['Locale'](_0x3eeac1)?.['timeZones']||[];},null);}['region'](_0x22c436=this['_code']){return a0_0x2829f2(()=>{return new Intl['Locale'](_0x22c436)['region'];},null);}['year'](){return this['val']['year'];}['month'](){return this['val']['month'];}['monthUtc'](){return this['val']['month']-0x1;}['day'](){return this['val']['day'];}['hours'](){return this['val']['hour'];}['min'](){return this['val']['minute'];}['sec'](){return this['val']['second'];}['msec'](){return this['val']['millisecond'];}['dayOfWeek'](){const _0x233f1e=this['val']['dayOfWeek'];return _0x233f1e?_0x233f1e:0x7;}['dayOfWeekUtc'](){return this['val']['dayOfWeek']-0x1;}['setYear'](_0x20e8d){const _0x5b9c57={};return _0x5b9c57['year']=_0x20e8d,this['val']=this['val']['with'](_0x5b9c57),this;}['setMonth'](_0x3434e3){const _0x4c7306={};return _0x4c7306['month']=_0x3434e3,this['val']=this['val']['with'](_0x4c7306),this;}['setMonthUtc'](_0x1c9abc){const _0x97a580={};return _0x97a580['month']=_0x1c9abc+0x1,this['val']=this['val']['with'](_0x97a580),this;}['setDay'](_0xf20e0){const _0x258da6={};return _0x258da6['day']=_0xf20e0,this['val']=this['val']['with'](_0x258da6),this;}['setHour'](_0xe4193e){const _0x212944={};return _0x212944['hour']=_0xe4193e,this['val']=this['val']['with'](_0x212944),this;}['startOfHours'](){return this['setMin'](0x0),this['setSeconds'](0x0),this['setMilliseconds'](0x0),this;}['endOfHours'](){return this['setMin'](0x3b),this['setSeconds'](0x3b),this['setMilliseconds'](0x3e7),this;}['setMin'](_0x24e80c){const _0x4e3842={};return _0x4e3842['minute']=_0x24e80c,this['val']=this['val']['with'](_0x4e3842),this;}['startOfMin'](){return this['setSeconds'](0x0),this['setMilliseconds'](0x0),this;}['endOfMin'](){return this['setSeconds'](0x3b),this['setMilliseconds'](0x3e7),this;}['setSeconds'](_0x2695e6){const _0x41f46a={};return _0x41f46a['second']=_0x2695e6,this['val']=this['val']['with'](_0x41f46a),this;}['startOfSeconds'](){return this['setMilliseconds'](0x0),this;}['endOfSeconds'](){return this['setMilliseconds'](0x3e7),this;}['setMilliseconds'](_0x4c9f92){const _0x554c37={};return _0x554c37['millisecond']=_0x4c9f92,this['val']=this['val']['with'](_0x554c37),this;}['startOfMilliseconds'](){return this['setMilliseconds'](0x0),this;}['endOfMilliseconds'](){return this['setMilliseconds'](0x3e7),this;}['setIsoDate'](_0x88fac1){const _0x3cd792=_0x88fac1?new Date(_0x88fac1?.['replace']('T','\x20')):new Date();return this['val']=a0_0x1d23d0['Temporal']['Instant']['from'](_0x3cd792['toISOString']())['toZonedDateTimeISO'](this['zone']),this;}['setTime'](_0x22c431){return this['val']=a0_0x1d23d0['Temporal']['Instant']['fromEpochMilliseconds'](_0x22c431||new Date()['getTime']())['toZonedDateTimeISO'](this['zone']),this;}['setDate'](_0x20e1d2){return this['setIsoDate'](_0x20e1d2?.['toISOString']()),this;}['setDateInputValue'](_0x45e2ab){const _0x540b75=_0x45e2ab?new Date(_0x45e2ab?.['replace']('T','\x20')):new Date();return _0x540b75['getTime']()&&(this['val']=a0_0x1d23d0['Temporal']['Instant']['from'](_0x540b75?.['toISOString']())['toZonedDateTimeISO'](this['zone']),this['with'](_0x540b75)),this;}['setVal'](_0x454647){return a0_0x2829f2(()=>{return a0_0x51d49d['new']()['setTime'](a0_0xf07824(_0x454647,this['zone']));});}['toIsoDate'](){const _0x42abf1={};return _0x42abf1['fractionalSecondDigits']=0x3,this['val']['toInstant']()['toString'](_0x42abf1);}['toIsoDateZone'](){return this['val']['toString']()['substring'](0x0,0x1d)+'Z';}['toTime'](){return this['val']['epochMilliseconds'];}['toDate'](){return new Date(this['val']['toInstant']()['epochMilliseconds']);}['toDateMounthInput'](){return this['year']()+'-'+a0_0x558bea(this['month']());}['toDateInput'](){return this['year']()+'-'+a0_0x558bea(this['month']())+'-'+a0_0x558bea(this['day']());}['toTimeInput'](_0x49904b=!![]){const _0x50b13d=[];return _0x50b13d['push'](a0_0x558bea(this['hours']())),_0x50b13d['push'](a0_0x558bea(this['min']())),_0x49904b&&_0x50b13d['push'](a0_0x558bea(this['sec']())),_0x50b13d['join'](':');}['toDateTimeInput'](_0x3dbf3f=!![]){return this['toDateInput']()+'T'+this['toTimeInput'](_0x3dbf3f);}['toAs'](){return this['val']['toInstant']()['toString']();}['strDate'](){const _0x4a9326={};return _0x4a9326['month']='2-digit',_0x4a9326['day']='2-digit',_0x4a9326['year']='numeric',this['val']['toLocaleString'](this['_code'],_0x4a9326);}['strTime'](){return a0_0x558bea(this['hours']())+':'+a0_0x558bea(this['min']())+':'+a0_0x558bea(this['sec']());}['strHHmm'](){return a0_0x558bea(this['hours']())+':'+a0_0x558bea(this['min']());}['str'](){return this['strDate']()+'\x20'+this['strTime']();}['strLocal'](_0x1d0b2e){return this['val']['toLocaleString'](this['_code'],_0x1d0b2e);}['strYears'](){return this['val']['year']['toString']();}['strMounth'](){return a0_0x558bea(this['month'](),0x2);}['strDay'](){return a0_0x558bea(this['day'](),0x2);}['strHour'](){return a0_0x558bea(this['hours'](),0x2);}['strMin'](){return a0_0x558bea(this['min'](),0x2);}['strSec'](){return a0_0x558bea(this['sec'](),0x2);}['strMsec'](){return a0_0x558bea(this['msec'](),0x2);}['strDayStr'](){return{'ln':()=>this['dyfrmt']['ln'](),'sh':()=>this['dyfrmt']['sh'](),'nr':()=>this['dyfrmt']['nr']()};}['addDay'](_0x22deec){const _0x1b50a6={};return _0x1b50a6['days']=_0x22deec,this['val']=this['val']['add'](_0x1b50a6),this;}['addHours'](_0x3bdb68){const _0x4d3344={};return _0x4d3344['hours']=_0x3bdb68,this['val']=this['val']['add'](_0x4d3344),this;}['addMins'](_0x2eb613){const _0x450bc7={};return _0x450bc7['minutes']=_0x2eb613,this['val']=this['val']['add'](_0x450bc7),this;}['startOfDay'](){return this['setHour'](0x0),this['startOfHours'](),this;}['cpyByStartOfDay'](){return this['cpy']()['startOfDay']();}['endOfDay'](){return this['setHour'](0x17),this['endOfHours'](),this;}['cpyByEndOfDay'](){return this['cpy']()['endOfDay']();}['startOfWeek'](){return this['addDay'](-this['dayOfWeek']()+0x1);}['cpyStartOfWeek'](){return this['cpy']()['addDay'](-this['dayOfWeek']()+0x1);}['endOfWeek'](){return this['startOfWeek']()['addDay'](0x6);}['cpyEndOfWeek'](){return this['cpyStartOfWeek']()['addDay'](0x6);}['startOfMonth'](){return this['setDay'](0x1),this['startOfDay'](),this;}['cpyByStartOfMonth'](){return this['cpy']()['startOfMonth']();}['endOfMonth'](){return this['setTime'](this['val']['epochMilliseconds'])['startOfMonth']()['setMonth'](this['month']()+0x1)['startOfMonth']()['addDay'](-0x1)['endOfDay'](),this;}['cpyByEndOfMonth'](){return this['cpy']()['endOfMonth']();}['eq'](_0x3249e3){return a0_0x2829f2(()=>{return this['cpy']()['toTime']()===a0_0xf07824(_0x3249e3,this['zone']);});}['gt'](_0x5d195a){return a0_0x2829f2(()=>{return this['cpy']()['toTime']()>a0_0xf07824(_0x5d195a,this['zone']);});}['gte'](_0x2e5647){return a0_0x2829f2(()=>{return this['cpy']()['toTime']()>=a0_0xf07824(_0x2e5647,this['zone']);});}['lt'](_0x28108e){return a0_0x2829f2(()=>{return this['cpy']()['toTime']()<a0_0xf07824(_0x28108e,this['zone']);});}['lte'](_0x3e715a){return a0_0x2829f2(()=>{return this['cpy']()['toTime']()<=a0_0xf07824(_0x3e715a,this['zone']);});}['btw'](_0x2c7ac9,_0x509e06){return a0_0x2829f2(()=>{const _0x11d314=a0_0xf07824(_0x2c7ac9,this['zone']),_0x338c4c=a0_0xf07824(_0x509e06,this['zone']),_0x1a46e3=this['cpy']()['toTime']();return _0x11d314<_0x1a46e3&&_0x1a46e3<_0x338c4c;});}['btweq'](_0x64eac0,_0x3963a3){return a0_0x2829f2(()=>{const _0x57326a=a0_0xf07824(_0x64eac0,this['zone']),_0x10fc3c=a0_0xf07824(_0x3963a3,this['zone']),_0x2fef27=this['cpy']()['toTime']();return _0x57326a<=_0x2fef27&&_0x2fef27<=_0x10fc3c;});}['btwEqStart'](_0x2d0784,_0x25c92c){return a0_0x2829f2(()=>{const _0x5b8a72=a0_0xf07824(_0x2d0784,this['zone']),_0x409aac=a0_0xf07824(_0x25c92c,this['zone']),_0x314617=this['cpy']()['toTime']();return _0x5b8a72<=_0x314617&&_0x314617<_0x409aac;});}['btwEqEnd'](_0xfa5f85,_0x30c32e){return a0_0x2829f2(()=>{const _0x1b5e0a=a0_0xf07824(_0xfa5f85,this['zone']),_0x5ee0be=a0_0xf07824(_0x30c32e,this['zone']),_0x2cb826=this['cpy']()['toTime']();return _0x1b5e0a<_0x2cb826&&_0x2cb826<=_0x5ee0be;});}static['diffDays'](_0x16b929,_0x196af5,_0xf47e6c){return a0_0x2829f2(()=>{const _0x276b16=a0_0xf07824(_0x16b929,a0_0x141411),_0x4887f9=a0_0xf07824(_0x196af5,a0_0x141411);return _0xf47e6c?Math['abs'](_0x276b16-_0x4887f9)/0x36ee80/0x18:(_0x276b16-_0x4887f9)/0x36ee80/0x18;});}static['diffHours'](_0x6ded0c,_0x3682a2,_0x53713a){return a0_0x2829f2(()=>{const _0x6635f2=a0_0xf07824(_0x6ded0c,a0_0x141411),_0x1b4c78=a0_0xf07824(_0x3682a2,a0_0x141411);return _0x53713a?Math['abs'](_0x6635f2-_0x1b4c78)/0x36ee80:(_0x6635f2-_0x1b4c78)/0x36ee80;});}static['diffMins'](_0x32c1a6,_0x39b3b3,_0x28db28){return a0_0x2829f2(()=>{const _0x19a29d=a0_0xf07824(_0x32c1a6,a0_0x141411),_0xaf7dc0=a0_0xf07824(_0x39b3b3,a0_0x141411);return _0x28db28?Math['abs'](_0x19a29d-_0xaf7dc0)/0x3e8/0x3c:(_0x19a29d-_0xaf7dc0)/0x3e8/0x3c;});}static['diffSecs'](_0x2e17c2,_0x94f05,_0x398365){return a0_0x2829f2(()=>{const _0x2268a6=a0_0xf07824(_0x2e17c2,a0_0x141411),_0x16ab43=a0_0xf07824(_0x94f05,a0_0x141411);return _0x398365?Math['abs'](_0x2268a6-_0x16ab43)/0x3e8:(_0x2268a6-_0x16ab43)/0x3e8;});}static['divideTime'](_0x21208c){return a0_0x2829f2(()=>a0_0x392557(_0x21208c));}}exports['MDateUtil']=a0_0x51d49d;const a0_0x2c0102={};a0_0x2c0102['value']='MDateUtil',a0_0x2c0102['writable']=![],a0_0x2c0102['enumerable']=!![],a0_0x2c0102['configurable']=![],Object['defineProperty'](a0_0x51d49d['prototype'],'idkey',a0_0x2c0102);
|
package/dist/index.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './DateUtil';
|
package/dist/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
'use strict';var a0_0x4e67f1=this&&this['__createBinding']||(Object['create']?function(_0x3b8fa6,_0x5ab690,_0x14c536,_0x4afa73){if(_0x4afa73===undefined)_0x4afa73=_0x14c536;var _0x4020fe=Object['getOwnPropertyDescriptor'](_0x5ab690,_0x14c536);if(!_0x4020fe||('get'in _0x4020fe?!_0x5ab690['__esModule']:_0x4020fe['writable']||_0x4020fe['configurable'])){var _0x48765c={};_0x48765c['enumerable']=!![],_0x48765c['get']=function(){return _0x5ab690[_0x14c536];},_0x4020fe=_0x48765c;}Object['defineProperty'](_0x3b8fa6,_0x4afa73,_0x4020fe);}:function(_0xfb0c79,_0x45fb18,_0x3d0401,_0x11fb10){if(_0x11fb10===undefined)_0x11fb10=_0x3d0401;_0xfb0c79[_0x11fb10]=_0x45fb18[_0x3d0401];}),a0_0x4a3160=this&&this['__exportStar']||function(_0x25fc14,_0x5c959e){for(var _0x35f5e0 in _0x25fc14)if(_0x35f5e0!=='default'&&!Object['prototype']['hasOwnProperty']['call'](_0x5c959e,_0x35f5e0))a0_0x4e67f1(_0x5c959e,_0x25fc14,_0x35f5e0);},a0_0x31687d={};a0_0x31687d['value']=!![],Object['defineProperty'](exports,'__esModule',a0_0x31687d),a0_0x4a3160(require('./DateUtil'),exports);
|