mat-date 1.7.71 → 1.8.11
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/dist/DateUtil.d.ts +26 -26
- package/dist/DateUtil.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/DateUtil.d.ts
CHANGED
|
@@ -14,7 +14,7 @@ interface IStrOptions {
|
|
|
14
14
|
hour12?: boolean | undefined;
|
|
15
15
|
timeZone?: string | undefined;
|
|
16
16
|
}
|
|
17
|
-
export declare class
|
|
17
|
+
export declare class KDateUtil {
|
|
18
18
|
private val;
|
|
19
19
|
private code;
|
|
20
20
|
private _zone;
|
|
@@ -23,11 +23,11 @@ export declare class MDateUtil {
|
|
|
23
23
|
get zone(): string;
|
|
24
24
|
private init;
|
|
25
25
|
toString(): string;
|
|
26
|
-
static new():
|
|
27
|
-
static setCode(code: string): typeof
|
|
28
|
-
static setZone(zone: string): typeof
|
|
26
|
+
static new(): KDateUtil;
|
|
27
|
+
static setCode(code: string): typeof KDateUtil;
|
|
28
|
+
static setZone(zone: string): typeof KDateUtil;
|
|
29
29
|
static seperator(): string;
|
|
30
|
-
cpy():
|
|
30
|
+
cpy(): KDateUtil;
|
|
31
31
|
setCode(code: string): this;
|
|
32
32
|
setZone(zone: string): this;
|
|
33
33
|
seperator(): string;
|
|
@@ -64,14 +64,14 @@ export declare class MDateUtil {
|
|
|
64
64
|
setTime(value: number): this;
|
|
65
65
|
setDate(value: Date): this;
|
|
66
66
|
setDateInputValue(value: string): this;
|
|
67
|
-
setVal(value:
|
|
67
|
+
setVal(value: KDateUtil | Date | number | string): KDateUtil;
|
|
68
68
|
toIsoDate(): string;
|
|
69
69
|
toIsoDateZone(): string;
|
|
70
70
|
toTime(): number;
|
|
71
71
|
toDate(): Temporal.ZonedDateTime;
|
|
72
72
|
toDateMounthInput(): string;
|
|
73
73
|
toDateInput(): string;
|
|
74
|
-
toTimeInput(byS?: boolean):
|
|
74
|
+
toTimeInput(byS?: boolean): any;
|
|
75
75
|
toDateTimeInput(byS?: boolean): string;
|
|
76
76
|
strDate(): string;
|
|
77
77
|
strTime(): string;
|
|
@@ -94,30 +94,30 @@ export declare class MDateUtil {
|
|
|
94
94
|
addHours(value: number): this;
|
|
95
95
|
addMins(value: number): this;
|
|
96
96
|
startOfDay(): this;
|
|
97
|
-
cpyByStartOfDay():
|
|
97
|
+
cpyByStartOfDay(): KDateUtil;
|
|
98
98
|
endOfDay(): this;
|
|
99
|
-
cpyByEndOfDay():
|
|
99
|
+
cpyByEndOfDay(): KDateUtil;
|
|
100
100
|
startOfWeek(): this;
|
|
101
|
-
cpyStartOfWeek():
|
|
101
|
+
cpyStartOfWeek(): KDateUtil;
|
|
102
102
|
endOfWeek(): this;
|
|
103
|
-
cpyEndOfWeek():
|
|
103
|
+
cpyEndOfWeek(): KDateUtil;
|
|
104
104
|
startOfMonth(): this;
|
|
105
|
-
cpyByStartOfMonth():
|
|
105
|
+
cpyByStartOfMonth(): KDateUtil;
|
|
106
106
|
endOfMonth(): this;
|
|
107
|
-
cpyByEndOfMonth():
|
|
108
|
-
eq(value:
|
|
109
|
-
gt(value:
|
|
110
|
-
gte(value:
|
|
111
|
-
lt(value:
|
|
112
|
-
lte(value:
|
|
113
|
-
btw(start:
|
|
114
|
-
btweq(start:
|
|
115
|
-
btwEqStart(start:
|
|
116
|
-
btwEqEnd(start:
|
|
117
|
-
static diffDays(before:
|
|
118
|
-
static diffHours(before:
|
|
119
|
-
static diffMins(before:
|
|
120
|
-
static diffSecs(before:
|
|
107
|
+
cpyByEndOfMonth(): KDateUtil;
|
|
108
|
+
eq(value: KDateUtil | Date | number | string): boolean;
|
|
109
|
+
gt(value: KDateUtil | Date | number | string): boolean;
|
|
110
|
+
gte(value: KDateUtil | Date | number | string): boolean;
|
|
111
|
+
lt(value: KDateUtil | Date | number | string): boolean;
|
|
112
|
+
lte(value: KDateUtil | Date | number | string): boolean;
|
|
113
|
+
btw(start: KDateUtil | Date | number | string, end: KDateUtil | Date | number | string): boolean;
|
|
114
|
+
btweq(start: KDateUtil | Date | number | string, end: KDateUtil | Date | number | string): boolean;
|
|
115
|
+
btwEqStart(start: KDateUtil | Date | number | string, end: KDateUtil | Date | number | string): boolean;
|
|
116
|
+
btwEqEnd(start: KDateUtil | Date | number | string, end: KDateUtil | Date | number | string): boolean;
|
|
117
|
+
static diffDays(before: KDateUtil | Date | number | string, after: KDateUtil | Date | number | string, abs?: boolean): number;
|
|
118
|
+
static diffHours(before: KDateUtil | Date | number | string, after: KDateUtil | Date | number | string, abs?: boolean): number;
|
|
119
|
+
static diffMins(before: KDateUtil | Date | number | string, after: KDateUtil | Date | number | string, abs?: boolean): number;
|
|
120
|
+
static diffSecs(before: KDateUtil | Date | number | string, after: KDateUtil | Date | number | string, abs?: boolean): number;
|
|
121
121
|
static divideTime(value: string): {
|
|
122
122
|
h: number;
|
|
123
123
|
m: number;
|
package/dist/DateUtil.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';const a0_0x265767={};a0_0x265767['value']=!![],Object['defineProperty'](exports,'__esModule',a0_0x265767),exports['MDateUtil']=void 0x0;const a0_0x3fcabf=require('@js-temporal/polyfill'),a0_0x2ffd4a=(_0x153f73,_0x238f98=0x2)=>_0x153f73['toString']()['padStart'](_0x238f98,'0');function a0_0x253d72(_0x3fb45c,_0x761724){try{return _0x3fb45c();}catch(_0x38291c){if(_0x761724)return _0x761724;throw new Error('UNKNOWN');}}function a0_0x4dd02f(_0x111df4,_0xa5444){try{if(_0x111df4 instanceof Date)return a0_0x3fcabf['Temporal']['Instant']['fromEpochMilliseconds'](_0x111df4['getTime']())['toZonedDateTimeISO'](_0xa5444)['epochMilliseconds'];if(typeof _0x111df4==='number')return _0x111df4;if(typeof _0x111df4==='string')return a0_0x3fcabf['Temporal']['Instant']['fromEpochMilliseconds'](new Date(_0x111df4)['getTime']())['toZonedDateTimeISO'](_0xa5444)['epochMilliseconds'];if(_0x111df4 instanceof a0_0x450e48)return _0x111df4['toTime']();if(_0x111df4['idkey']==='mdateutil')return _0x111df4['toTime']();return 0x0;}catch(_0x3707e3){throw new Error('ERROR');}}function a0_0x4ac2fc(_0x24960e){function _0x34079a(_0x25816c){const _0x3dee9f={};return _0x3dee9f['weekday']=_0x25816c,a0_0x253d72(()=>new Intl['DateTimeFormat'](_0x24960e['localCode'],_0x3dee9f)['format'](a0_0x4dd02f(_0x24960e,_0x24960e['zone'])),'');}function _0xbf52dc(){return _0x34079a('long');}function _0x5558c5(){return _0x34079a('short');}function _0x5cc68f(){return _0x34079a('narrow');}const _0x518a3c={};return _0x518a3c['ln']=_0xbf52dc,_0x518a3c['sh']=_0x5558c5,_0x518a3c['nr']=_0x5cc68f,_0x518a3c;}function a0_0x7107f0(_0x5ae007){let _0x1a3136=undefined,_0x411e4a=undefined,_0x537109=undefined,_0x2c0181=undefined;try{const _0x2b387a=(_0x5ae007||'')['match'](/\w{2}:\w{2}(:\w{2})?\b/g)[0x0]['split'](':');_0x1a3136=_0x2b387a['length']>=0x1?Number(_0x2b387a[0x0]):undefined,_0x411e4a=_0x2b387a['length']>=0x2?Number(_0x2b387a[0x1]):undefined,_0x537109=_0x2b387a['length']>=0x3?Number(_0x2b387a[0x2]):undefined;}catch(_0x6f7957){}try{let _0x543fbe=_0x5ae007||'',_0x3d2ae1=/\.\d{3}/g,_0x410122=_0x543fbe['match'](_0x3d2ae1)[0x0]['split']('.')['filter'](_0x5edf20=>Boolean(_0x5edf20));_0x2c0181=_0x410122['length']>=0x1?Number(_0x410122[0x0]):undefined;}catch(_0x149a6b){}const _0x37d4aa={};return _0x37d4aa['h']=_0x1a3136,_0x37d4aa['m']=_0x411e4a,_0x37d4aa['s']=_0x537109,_0x37d4aa['ms']=_0x2c0181,_0x37d4aa;}let a0_0x5b1847=Intl['NumberFormat']()['resolvedOptions']()['locale'],a0_0x478f0d=Intl['DateTimeFormat']()['resolvedOptions']()['timeZone'];class a0_0x450e48{['val'];['code']=Intl['NumberFormat']()['resolvedOptions']()['locale'];['_zone']=Intl['DateTimeFormat']()['resolvedOptions']()['timeZone'];['dyfrmt']=a0_0x4ac2fc(this);get['localCode'](){return this['code'];}get['zone'](){return this['_zone'];}['init'](){return this['val']=a0_0x3fcabf['Temporal']['Instant']['fromEpochMilliseconds'](new Date()['getTime']())['toZonedDateTimeISO'](this['zone']),this['dyfrmt']=a0_0x4ac2fc(this),this;}['toString'](){return'TEST';}static['new'](){return new a0_0x450e48()['setCode'](a0_0x5b1847)['setZone'](a0_0x478f0d)['init']();}static['setCode'](_0x518e6b){return a0_0x5b1847=_0x518e6b,this;}static['setZone'](_0x31e453){return a0_0x478f0d=_0x31e453,this;}static['seperator'](){return a0_0x253d72(()=>new Date()['toLocaleDateString'](a0_0x5b1847)['replace'](/\d/g,'')['split']('')[0x0]);}['cpy'](){return a0_0x253d72(()=>a0_0x450e48['new']()['setTime'](this['toTime']()));}['setCode'](_0x1d363a){return this['code']=_0x1d363a,this;}['setZone'](_0x43e2f0){return this['_zone']=_0x43e2f0,this;}['seperator'](){return a0_0x253d72(()=>new Date()['toLocaleDateString'](this['code'])['replace'](/\d/g,'')['split']('')[0x0]);}['timezone'](){return a0_0x253d72(()=>{return this['zone']||Intl['DateTimeFormat']()?.['resolvedOptions']()?.['timeZone'];},null);}['zones'](_0x13fc47=this['code']){return a0_0x253d72(()=>{return new Intl['Locale'](_0x13fc47)?.['timeZones']||[];},null);}['region'](_0x3621e9=this['code']){return a0_0x253d72(()=>{return new Intl['Locale'](_0x3621e9)['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 _0x32f2af=this['val']['dayOfWeek'];return _0x32f2af?_0x32f2af:0x7;}['dayOfWeekUtc'](){return this['val']['dayOfWeek']-0x1;}['setYear'](_0x77f5e8){const _0x3c314d={};return _0x3c314d['year']=_0x77f5e8,this['val']['with'](_0x3c314d),this;}['setMonth'](_0x50447a){const _0xf13e8a={};return _0xf13e8a['month']=_0x50447a,this['val']['with'](_0xf13e8a),this;}['setMonthUtc'](_0x642d50){const _0x1e85de={};return _0x1e85de['month']=_0x642d50+0x1,this['val']['with'](_0x1e85de),this;}['setDay'](_0x283c2f){const _0x3a0f99={};return _0x3a0f99['day']=_0x283c2f,this['val']['with'](_0x3a0f99),this;}['setHour'](_0x1838b4){const _0x3b18a5={};return _0x3b18a5['hour']=_0x1838b4,this['val']['with'](_0x3b18a5),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'](_0x3d329e){const _0x5c6338={};return _0x5c6338['minute']=_0x3d329e,this['val']['with'](_0x5c6338),this;}['startOfMin'](){return this['setSeconds'](0x0),this['setMilliseconds'](0x0),this;}['endOfMin'](){return this['setSeconds'](0x3b),this['setMilliseconds'](0x3e7),this;}['setSeconds'](_0x27085f){const _0x46c91d={};return _0x46c91d['second']=_0x27085f,this['val']['with'](_0x46c91d),this;}['startOfSeconds'](){return this['setMilliseconds'](0x0),this;}['endOfSeconds'](){return this['setMilliseconds'](0x3e7),this;}['setMilliseconds'](_0x36a141){const _0x4fc003={};return _0x4fc003['millisecond']=_0x36a141,this['val']['with'](_0x4fc003),this;}['startOfMilliseconds'](){return this['setMilliseconds'](0x0),this;}['endOfMilliseconds'](){return this['setMilliseconds'](0x3e7),this;}['setIsoDate'](_0x4cc710){return this['val']=a0_0x3fcabf['Temporal']['Instant']['from'](_0x4cc710||new Date()['toISOString']())['toZonedDateTimeISO'](this['zone']),this;}['setTime'](_0x49d50c){return this['val']=a0_0x3fcabf['Temporal']['Instant']['fromEpochMilliseconds'](_0x49d50c||new Date()['getTime']())['toZonedDateTimeISO'](this['zone']),this;}['setDate'](_0x1af7e4){return this['setIsoDate'](_0x1af7e4?.['toISOString']()),this;}['setDateInputValue'](_0x489b94){return this['val']=a0_0x3fcabf['Temporal']['Instant']['from'](new Date(_0x489b94?.['replace']('T','\x20'))['toISOString']())['toZonedDateTimeISO'](this['zone']),this;}['setVal'](_0x276836){return a0_0x253d72(()=>{return a0_0x450e48['new']()['setTime'](a0_0x4dd02f(_0x276836,this['zone']));});}['toIsoDate'](){return this['val']['toString']()['substring'](0x0,0x17)+'Z';}['toIsoDateZone'](){return this['val']['toString']()['substring'](0x0,0x1d)+'Z';}['toTime'](){return this['val']['epochMilliseconds'];}['toDate'](){return this['val'];}['toDateMounthInput'](){return this['year']()+'-'+a0_0x2ffd4a(this['month']());}['toDateInput'](){return this['year']()+'-'+a0_0x2ffd4a(this['month']())+'-'+a0_0x2ffd4a(this['day']());}['toTimeInput'](_0x174e24=!![]){const _0xdf4a66=[];return _0xdf4a66['push'](a0_0x2ffd4a(this['hours']())),_0xdf4a66['push'](a0_0x2ffd4a(this['min']())),_0x174e24&&_0xdf4a66['push'](a0_0x2ffd4a(this['sec']())),_0xdf4a66['join'](':');}['toDateTimeInput'](_0x2e4903=!![]){return this['toDateInput']()+'T'+this['toTimeInput'](_0x2e4903);}['strDate'](){const _0x509cdc={};return _0x509cdc['month']='2-digit',_0x509cdc['day']='2-digit',_0x509cdc['year']='numeric',this['val']['toLocaleString'](this['code'],_0x509cdc);}['strTime'](){return a0_0x2ffd4a(this['hours']())+':'+a0_0x2ffd4a(this['min']())+':'+a0_0x2ffd4a(this['sec']());}['strHHmm'](){return a0_0x2ffd4a(this['hours']())+':'+a0_0x2ffd4a(this['min']());}['str'](){return this['strDate']()+'\x20'+this['strTime']();}['strLocal'](_0x1b9069){return this['val']['toLocaleString'](this['code'],_0x1b9069);}['strYears'](){return this['val']['year']['toString']();}['strMounth'](){return a0_0x2ffd4a(this['month'](),0x2);}['strDay'](){return a0_0x2ffd4a(this['day'](),0x2);}['strHour'](){return a0_0x2ffd4a(this['hours'](),0x2);}['strMin'](){return a0_0x2ffd4a(this['min'](),0x2);}['strSec'](){return a0_0x2ffd4a(this['sec'](),0x2);}['strMsec'](){return a0_0x2ffd4a(this['msec'](),0x2);}['strDayStr'](){return{'ln':()=>this['dyfrmt']['ln'](),'sh':()=>this['dyfrmt']['sh'](),'nr':()=>this['dyfrmt']['nr']()};}['addDay'](_0x5ed9aa){const _0x349dfd={};return _0x349dfd['days']=_0x5ed9aa,this['val']['add'](_0x349dfd),this;}['addHours'](_0x23487d){const _0x548a54={};return _0x548a54['hours']=_0x23487d,this['val']['add'](_0x548a54),this;}['addMins'](_0x33c092){const _0x4b81b4={};return _0x4b81b4['minutes']=_0x33c092,this['val']['add'](_0x4b81b4),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'](_0x32f1f2){return a0_0x253d72(()=>{return this['cpy']()['toTime']()===a0_0x4dd02f(_0x32f1f2,this['zone']);});}['gt'](_0x59d79d){return a0_0x253d72(()=>{return this['cpy']()['toTime']()>a0_0x4dd02f(_0x59d79d,this['zone']);});}['gte'](_0xf7da0){return a0_0x253d72(()=>{return this['cpy']()['toTime']()>=a0_0x4dd02f(_0xf7da0,this['zone']);});}['lt'](_0x38a125){return a0_0x253d72(()=>{return this['cpy']()['toTime']()<a0_0x4dd02f(_0x38a125,this['zone']);});}['lte'](_0x13b6a4){return a0_0x253d72(()=>{return this['cpy']()['toTime']()<=a0_0x4dd02f(_0x13b6a4,this['zone']);});}['btw'](_0x28340c,_0x22aceb){return a0_0x253d72(()=>{const _0x1014a1=a0_0x4dd02f(_0x28340c,this['zone']),_0x3bc2fa=a0_0x4dd02f(_0x22aceb,this['zone']),_0x225361=this['cpy']()['toTime']();return _0x1014a1<_0x225361&&_0x225361<_0x3bc2fa;});}['btweq'](_0x37c02f,_0x50c9ac){return a0_0x253d72(()=>{const _0x1c5edd=a0_0x4dd02f(_0x37c02f,this['zone']),_0x3b4208=a0_0x4dd02f(_0x50c9ac,this['zone']),_0x59385f=this['cpy']()['toTime']();return _0x1c5edd<=_0x59385f&&_0x59385f<=_0x3b4208;});}['btwEqStart'](_0x1e458f,_0x446af5){return a0_0x253d72(()=>{const _0x2eefb7=a0_0x4dd02f(_0x1e458f,this['zone']),_0xdbfc19=a0_0x4dd02f(_0x446af5,this['zone']),_0x22aa9c=this['cpy']()['toTime']();return _0x2eefb7<=_0x22aa9c&&_0x22aa9c<_0xdbfc19;});}['btwEqEnd'](_0x15e7d8,_0x43a006){return a0_0x253d72(()=>{const _0x3d01cc=a0_0x4dd02f(_0x15e7d8,this['zone']),_0xe9aa61=a0_0x4dd02f(_0x43a006,this['zone']),_0x4d5ab5=this['cpy']()['toTime']();return _0x3d01cc<_0x4d5ab5&&_0x4d5ab5<=_0xe9aa61;});}static['diffDays'](_0x5407ec,_0xb3286e,_0x255592){return a0_0x253d72(()=>{const _0x28ddcf=a0_0x4dd02f(_0x5407ec,a0_0x478f0d),_0x4603f9=a0_0x4dd02f(_0xb3286e,a0_0x478f0d);return _0x255592?Math['abs'](_0x28ddcf-_0x4603f9)/0x36ee80/0x18:(_0x28ddcf-_0x4603f9)/0x36ee80/0x18;});}static['diffHours'](_0x56f3d7,_0x175a69,_0x3578aa){return a0_0x253d72(()=>{const _0x223bc6=a0_0x4dd02f(_0x56f3d7,a0_0x478f0d),_0x2506fd=a0_0x4dd02f(_0x175a69,a0_0x478f0d);return _0x3578aa?Math['abs'](_0x223bc6-_0x2506fd)/0x36ee80:(_0x223bc6-_0x2506fd)/0x36ee80;});}static['diffMins'](_0xbcb633,_0x1c6f9d,_0x16d587){return a0_0x253d72(()=>{const _0x30427b=a0_0x4dd02f(_0xbcb633,a0_0x478f0d),_0x1dabd8=a0_0x4dd02f(_0x1c6f9d,a0_0x478f0d);return _0x16d587?Math['abs'](_0x30427b-_0x1dabd8)/0x3e8/0x3c:(_0x30427b-_0x1dabd8)/0x3e8/0x3c;});}static['diffSecs'](_0x19def0,_0x283e88,_0x8b7b3d){return a0_0x253d72(()=>{const _0x5cf3e4=a0_0x4dd02f(_0x19def0,a0_0x478f0d),_0x4bbc08=a0_0x4dd02f(_0x283e88,a0_0x478f0d);return _0x8b7b3d?Math['abs'](_0x5cf3e4-_0x4bbc08)/0x3e8:(_0x5cf3e4-_0x4bbc08)/0x3e8;});}static['divideTime'](_0x3ba3e2){return a0_0x253d72(()=>a0_0x7107f0(_0x3ba3e2));}}exports['MDateUtil']=a0_0x450e48;const a0_0x337812={};a0_0x337812['value']='mdateutil',a0_0x337812['writable']=![],a0_0x337812['enumerable']=!![],a0_0x337812['configurable']=![],Object['defineProperty'](a0_0x450e48['prototype'],'idkey',a0_0x337812);
|
|
1
|
+
'use strict';const a0_0x2aa97c={};a0_0x2aa97c['value']=!![],Object['defineProperty'](exports,'__esModule',a0_0x2aa97c),exports['KDateUtil']=void 0x0;const a0_0x29b3dc=require('@js-temporal/polyfill'),a0_0x34f943=(_0x134c09,_0x5caa90=0x2)=>_0x134c09['toString']()['padStart'](_0x5caa90,'0');function a0_0x50fd5d(_0xd19dac,_0x1a2c9a){try{return _0xd19dac();}catch(_0x29a679){if(_0x1a2c9a)return _0x1a2c9a;throw new Error('UNKNOWN');}}function a0_0x212473(_0x4d747e,_0x268401){try{if(_0x4d747e instanceof Date)return a0_0x29b3dc['Temporal']['Instant']['fromEpochMilliseconds'](_0x4d747e['getTime']())['toZonedDateTimeISO'](_0x268401)['epochMilliseconds'];if(typeof _0x4d747e==='number')return _0x4d747e;if(typeof _0x4d747e==='string')return a0_0x29b3dc['Temporal']['Instant']['fromEpochMilliseconds'](new Date(_0x4d747e)['getTime']())['toZonedDateTimeISO'](_0x268401)['epochMilliseconds'];if(_0x4d747e instanceof a0_0x534212)return _0x4d747e['toTime']();if(_0x4d747e['idkey']==='mdateutil')return _0x4d747e['toTime']();return 0x0;}catch(_0x2ed3fe){throw new Error('ERROR');}}function a0_0x15c9fc(_0x1a61c0){function _0x5cdf98(_0x5bb165){const _0x318e67={};return _0x318e67['weekday']=_0x5bb165,a0_0x50fd5d(()=>new Intl['DateTimeFormat'](_0x1a61c0['localCode'],_0x318e67)['format'](a0_0x212473(_0x1a61c0,_0x1a61c0['zone'])),'');}function _0x1209c6(){return _0x5cdf98('long');}function _0xa1f1ea(){return _0x5cdf98('short');}function _0x38ce1d(){return _0x5cdf98('narrow');}const _0x3aac68={};return _0x3aac68['ln']=_0x1209c6,_0x3aac68['sh']=_0xa1f1ea,_0x3aac68['nr']=_0x38ce1d,_0x3aac68;}function a0_0x2612c2(_0x52ccbf){let _0x532b74=undefined,_0x1cb100=undefined,_0x511fff=undefined,_0xb7a0cb=undefined;try{const _0xd187f1=(_0x52ccbf||'')['match'](/\w{2}:\w{2}(:\w{2})?\b/g)[0x0]['split'](':');_0x532b74=_0xd187f1['length']>=0x1?Number(_0xd187f1[0x0]):undefined,_0x1cb100=_0xd187f1['length']>=0x2?Number(_0xd187f1[0x1]):undefined,_0x511fff=_0xd187f1['length']>=0x3?Number(_0xd187f1[0x2]):undefined;}catch(_0x2176b7){}try{let _0x5e565f=_0x52ccbf||'',_0x3674f2=/\.\d{3}/g,_0x21a2e7=_0x5e565f['match'](_0x3674f2)[0x0]['split']('.')['filter'](_0x59caec=>Boolean(_0x59caec));_0xb7a0cb=_0x21a2e7['length']>=0x1?Number(_0x21a2e7[0x0]):undefined;}catch(_0x334701){}const _0x713a8={};return _0x713a8['h']=_0x532b74,_0x713a8['m']=_0x1cb100,_0x713a8['s']=_0x511fff,_0x713a8['ms']=_0xb7a0cb,_0x713a8;}let a0_0x4e55f1=Intl['NumberFormat']()['resolvedOptions']()['locale'],a0_0x18a692=Intl['DateTimeFormat']()['resolvedOptions']()['timeZone'];class a0_0x534212{['val'];['code']=Intl['NumberFormat']()['resolvedOptions']()['locale'];['_zone']=Intl['DateTimeFormat']()['resolvedOptions']()['timeZone'];['dyfrmt']=a0_0x15c9fc(this);get['localCode'](){return this['code'];}get['zone'](){return this['_zone'];}['init'](){return this['val']=a0_0x29b3dc['Temporal']['Instant']['fromEpochMilliseconds'](new Date()['getTime']())['toZonedDateTimeISO'](this['zone']),this['dyfrmt']=a0_0x15c9fc(this),this;}['toString'](){return'TEST';}static['new'](){return new a0_0x534212()['setCode'](a0_0x4e55f1)['setZone'](a0_0x18a692)['init']();}static['setCode'](_0x4c1baf){return a0_0x4e55f1=_0x4c1baf,this;}static['setZone'](_0x330455){return a0_0x18a692=_0x330455,this;}static['seperator'](){return a0_0x50fd5d(()=>new Date()['toLocaleDateString'](a0_0x4e55f1)['replace'](/\d/g,'')['split']('')[0x0]);}['cpy'](){return a0_0x50fd5d(()=>a0_0x534212['new']()['setTime'](this['toTime']()));}['setCode'](_0x3494a6){return this['code']=_0x3494a6,this;}['setZone'](_0x242c9b){return this['_zone']=_0x242c9b,this;}['seperator'](){return a0_0x50fd5d(()=>new Date()['toLocaleDateString'](this['code'])['replace'](/\d/g,'')['split']('')[0x0]);}['timezone'](){return a0_0x50fd5d(()=>{return this['zone']||Intl['DateTimeFormat']()?.['resolvedOptions']()?.['timeZone'];},null);}['zones'](_0x27fb22=this['code']){return a0_0x50fd5d(()=>{return new Intl['Locale'](_0x27fb22)?.['timeZones']||[];},null);}['region'](_0x1acfe3=this['code']){return a0_0x50fd5d(()=>{return new Intl['Locale'](_0x1acfe3)['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 _0x560258=this['val']['dayOfWeek'];return _0x560258?_0x560258:0x7;}['dayOfWeekUtc'](){return this['val']['dayOfWeek']-0x1;}['setYear'](_0x8dd568){const _0x273d61={};return _0x273d61['year']=_0x8dd568,this['val']=this['val']['with'](_0x273d61),this;}['setMonth'](_0x45f15a){const _0x43e54c={};return _0x43e54c['month']=_0x45f15a,this['val']=this['val']['with'](_0x43e54c),this;}['setMonthUtc'](_0x4a1653){const _0x2416f7={};return _0x2416f7['month']=_0x4a1653+0x1,this['val']=this['val']['with'](_0x2416f7),this;}['setDay'](_0x447437){const _0x3689da={};return _0x3689da['day']=_0x447437,this['val']=this['val']['with'](_0x3689da),this;}['setHour'](_0x20c689){const _0x10934a={};return _0x10934a['hour']=_0x20c689,this['val']=this['val']['with'](_0x10934a),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'](_0x5c22cd){const _0x2864b8={};return _0x2864b8['minute']=_0x5c22cd,this['val']=this['val']['with'](_0x2864b8),this;}['startOfMin'](){return this['setSeconds'](0x0),this['setMilliseconds'](0x0),this;}['endOfMin'](){return this['setSeconds'](0x3b),this['setMilliseconds'](0x3e7),this;}['setSeconds'](_0x17af5b){const _0xc46703={};return _0xc46703['second']=_0x17af5b,this['val']=this['val']['with'](_0xc46703),this;}['startOfSeconds'](){return this['setMilliseconds'](0x0),this;}['endOfSeconds'](){return this['setMilliseconds'](0x3e7),this;}['setMilliseconds'](_0x394e61){const _0x1862dc={};return _0x1862dc['millisecond']=_0x394e61,this['val']=this['val']['with'](_0x1862dc),this;}['startOfMilliseconds'](){return this['setMilliseconds'](0x0),this;}['endOfMilliseconds'](){return this['setMilliseconds'](0x3e7),this;}['setIsoDate'](_0x422f94){return this['val']=a0_0x29b3dc['Temporal']['Instant']['from'](_0x422f94||new Date()['toISOString']())['toZonedDateTimeISO'](this['zone']),this;}['setTime'](_0x1d8ff7){return this['val']=a0_0x29b3dc['Temporal']['Instant']['fromEpochMilliseconds'](_0x1d8ff7||new Date()['getTime']())['toZonedDateTimeISO'](this['zone']),this;}['setDate'](_0xf8a4e1){return this['setIsoDate'](_0xf8a4e1?.['toISOString']()),this;}['setDateInputValue'](_0x274aa1){return this['val']=a0_0x29b3dc['Temporal']['Instant']['from'](new Date(_0x274aa1?.['replace']('T','\x20'))['toISOString']())['toZonedDateTimeISO'](this['zone']),this;}['setVal'](_0x2cbc40){return a0_0x50fd5d(()=>{return a0_0x534212['new']()['setTime'](a0_0x212473(_0x2cbc40,this['zone']));});}['toIsoDate'](){return this['val']['toString']()['substring'](0x0,0x17)+'Z';}['toIsoDateZone'](){return this['val']['toString']()['substring'](0x0,0x1d)+'Z';}['toTime'](){return this['val']['epochMilliseconds'];}['toDate'](){return this['val'];}['toDateMounthInput'](){return this['year']()+'-'+a0_0x34f943(this['month']());}['toDateInput'](){return this['year']()+'-'+a0_0x34f943(this['month']())+'-'+a0_0x34f943(this['day']());}['toTimeInput'](_0x49b158=!![]){const _0x35a630=[];return _0x35a630['push'](a0_0x34f943(this['hours']())),_0x35a630['push'](a0_0x34f943(this['min']())),_0x49b158&&_0x35a630['push'](a0_0x34f943(this['sec']())),_0x35a630['join'](':');}['toDateTimeInput'](_0x4a85bc=!![]){return this['toDateInput']()+'T'+this['toTimeInput'](_0x4a85bc);}['strDate'](){const _0x4e5b4f={};return _0x4e5b4f['month']='2-digit',_0x4e5b4f['day']='2-digit',_0x4e5b4f['year']='numeric',this['val']['toLocaleString'](this['code'],_0x4e5b4f);}['strTime'](){return a0_0x34f943(this['hours']())+':'+a0_0x34f943(this['min']())+':'+a0_0x34f943(this['sec']());}['strHHmm'](){return a0_0x34f943(this['hours']())+':'+a0_0x34f943(this['min']());}['str'](){return this['strDate']()+'\x20'+this['strTime']();}['strLocal'](_0x3cfc43){return this['val']['toLocaleString'](this['code'],_0x3cfc43);}['strYears'](){return this['val']['year']['toString']();}['strMounth'](){return a0_0x34f943(this['month'](),0x2);}['strDay'](){return a0_0x34f943(this['day'](),0x2);}['strHour'](){return a0_0x34f943(this['hours'](),0x2);}['strMin'](){return a0_0x34f943(this['min'](),0x2);}['strSec'](){return a0_0x34f943(this['sec'](),0x2);}['strMsec'](){return a0_0x34f943(this['msec'](),0x2);}['strDayStr'](){return{'ln':()=>this['dyfrmt']['ln'](),'sh':()=>this['dyfrmt']['sh'](),'nr':()=>this['dyfrmt']['nr']()};}['addDay'](_0x4542d4){const _0x5aaf8b={};return _0x5aaf8b['days']=_0x4542d4,this['val']=this['val']['add'](_0x5aaf8b),this;}['addHours'](_0x235de8){const _0x388093={};return _0x388093['hours']=_0x235de8,this['val']=this['val']['add'](_0x388093),this;}['addMins'](_0x3da837){const _0x17fd29={};return _0x17fd29['minutes']=_0x3da837,this['val']=this['val']['add'](_0x17fd29),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'](_0x4e2716){return a0_0x50fd5d(()=>{return this['cpy']()['toTime']()===a0_0x212473(_0x4e2716,this['zone']);});}['gt'](_0x27bf40){return a0_0x50fd5d(()=>{return this['cpy']()['toTime']()>a0_0x212473(_0x27bf40,this['zone']);});}['gte'](_0x560b13){return a0_0x50fd5d(()=>{return this['cpy']()['toTime']()>=a0_0x212473(_0x560b13,this['zone']);});}['lt'](_0x2567ec){return a0_0x50fd5d(()=>{return this['cpy']()['toTime']()<a0_0x212473(_0x2567ec,this['zone']);});}['lte'](_0x5aa750){return a0_0x50fd5d(()=>{return this['cpy']()['toTime']()<=a0_0x212473(_0x5aa750,this['zone']);});}['btw'](_0x341ee5,_0x36001f){return a0_0x50fd5d(()=>{const _0x1c9e9c=a0_0x212473(_0x341ee5,this['zone']),_0x3faeb4=a0_0x212473(_0x36001f,this['zone']),_0x1156be=this['cpy']()['toTime']();return _0x1c9e9c<_0x1156be&&_0x1156be<_0x3faeb4;});}['btweq'](_0x554c2e,_0xb6f66c){return a0_0x50fd5d(()=>{const _0x2959a0=a0_0x212473(_0x554c2e,this['zone']),_0x2277b2=a0_0x212473(_0xb6f66c,this['zone']),_0x131654=this['cpy']()['toTime']();return _0x2959a0<=_0x131654&&_0x131654<=_0x2277b2;});}['btwEqStart'](_0x337fed,_0x3548f7){return a0_0x50fd5d(()=>{const _0x317b2c=a0_0x212473(_0x337fed,this['zone']),_0x256c10=a0_0x212473(_0x3548f7,this['zone']),_0x4c942c=this['cpy']()['toTime']();return _0x317b2c<=_0x4c942c&&_0x4c942c<_0x256c10;});}['btwEqEnd'](_0x3618ff,_0x6b4963){return a0_0x50fd5d(()=>{const _0x2e5757=a0_0x212473(_0x3618ff,this['zone']),_0x2fec1e=a0_0x212473(_0x6b4963,this['zone']),_0x3a27d8=this['cpy']()['toTime']();return _0x2e5757<_0x3a27d8&&_0x3a27d8<=_0x2fec1e;});}static['diffDays'](_0x200f7e,_0x31ceaf,_0x224f8a){return a0_0x50fd5d(()=>{const _0x241dc2=a0_0x212473(_0x200f7e,a0_0x18a692),_0x4f7f33=a0_0x212473(_0x31ceaf,a0_0x18a692);return _0x224f8a?Math['abs'](_0x241dc2-_0x4f7f33)/0x36ee80/0x18:(_0x241dc2-_0x4f7f33)/0x36ee80/0x18;});}static['diffHours'](_0x1aee94,_0x22f467,_0x537ed7){return a0_0x50fd5d(()=>{const _0x3085f4=a0_0x212473(_0x1aee94,a0_0x18a692),_0x29afbd=a0_0x212473(_0x22f467,a0_0x18a692);return _0x537ed7?Math['abs'](_0x3085f4-_0x29afbd)/0x36ee80:(_0x3085f4-_0x29afbd)/0x36ee80;});}static['diffMins'](_0x45969b,_0x38c9b4,_0x22b84){return a0_0x50fd5d(()=>{const _0x2e2bb1=a0_0x212473(_0x45969b,a0_0x18a692),_0x1a3711=a0_0x212473(_0x38c9b4,a0_0x18a692);return _0x22b84?Math['abs'](_0x2e2bb1-_0x1a3711)/0x3e8/0x3c:(_0x2e2bb1-_0x1a3711)/0x3e8/0x3c;});}static['diffSecs'](_0x206f5,_0xac42b9,_0x50a266){return a0_0x50fd5d(()=>{const _0x471ee5=a0_0x212473(_0x206f5,a0_0x18a692),_0x4b9966=a0_0x212473(_0xac42b9,a0_0x18a692);return _0x50a266?Math['abs'](_0x471ee5-_0x4b9966)/0x3e8:(_0x471ee5-_0x4b9966)/0x3e8;});}static['divideTime'](_0x21b607){return a0_0x50fd5d(()=>a0_0x2612c2(_0x21b607));}}exports['KDateUtil']=a0_0x534212;const a0_0x244154={};a0_0x244154['value']='mdateutil',a0_0x244154['writable']=![],a0_0x244154['enumerable']=!![],a0_0x244154['configurable']=![],Object['defineProperty'](a0_0x534212['prototype'],'idkey',a0_0x244154);
|
package/dist/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';var
|
|
1
|
+
'use strict';var a0_0x43ce15=this&&this['__createBinding']||(Object['create']?function(_0x778852,_0x8f4e5f,_0x3fd227,_0x4de640){if(_0x4de640===undefined)_0x4de640=_0x3fd227;var _0x465a61=Object['getOwnPropertyDescriptor'](_0x8f4e5f,_0x3fd227);if(!_0x465a61||('get'in _0x465a61?!_0x8f4e5f['__esModule']:_0x465a61['writable']||_0x465a61['configurable'])){var _0x365ed2={};_0x365ed2['enumerable']=!![],_0x365ed2['get']=function(){return _0x8f4e5f[_0x3fd227];},_0x465a61=_0x365ed2;}Object['defineProperty'](_0x778852,_0x4de640,_0x465a61);}:function(_0x4aea00,_0x56fa73,_0x1e5bba,_0xff88ac){if(_0xff88ac===undefined)_0xff88ac=_0x1e5bba;_0x4aea00[_0xff88ac]=_0x56fa73[_0x1e5bba];}),a0_0x3747e6=this&&this['__exportStar']||function(_0x3fc570,_0x3591ca){for(var _0x55c323 in _0x3fc570)if(_0x55c323!=='default'&&!Object['prototype']['hasOwnProperty']['call'](_0x3591ca,_0x55c323))a0_0x43ce15(_0x3591ca,_0x3fc570,_0x55c323);},a0_0xddab91={};a0_0xddab91['value']=!![],Object['defineProperty'](exports,'__esModule',a0_0xddab91),a0_0x3747e6(require('./DateUtil'),exports);
|