mat-date 1.7.69 → 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_0x407c83={};a0_0x407c83['value']=!![],Object['defineProperty'](exports,'__esModule',a0_0x407c83),exports['MDateUtil']=void 0x0;const a0_0x69cd62=require('@js-temporal/polyfill'),a0_0x2542f4=(_0x13cd39,_0x268d22=0x2)=>_0x13cd39['toString']()['padStart'](_0x268d22,'0');function a0_0x372f6c(_0x37c38e,_0x3cb697){try{return _0x37c38e();}catch(_0x750153){if(_0x3cb697)return _0x3cb697;throw new Error('UNKNOWN');}}function a0_0x226aea(_0x4a955c,_0x421a9e){try{if(_0x4a955c instanceof Date)return a0_0x69cd62['Temporal']['Instant']['fromEpochMilliseconds'](_0x4a955c['getTime']())['toZonedDateTimeISO'](_0x421a9e)['epochMilliseconds'];if(typeof _0x4a955c==='number')return _0x4a955c;if(typeof _0x4a955c==='string')return a0_0x69cd62['Temporal']['Instant']['fromEpochMilliseconds'](new Date(_0x4a955c)['getTime']())['toZonedDateTimeISO'](_0x421a9e)['epochMilliseconds'];if(_0x4a955c instanceof a0_0x10db09)return _0x4a955c['toTime']();if(_0x4a955c['idkey']==='mdateutil')return _0x4a955c['toTime']();return 0x0;}catch(_0x6e2ee2){throw new Error('ERROR');}}function a0_0x15480f(_0x21bbc6){function _0x3b9dc0(_0x4ffea0){const _0x4882a8={};return _0x4882a8['weekday']=_0x4ffea0,a0_0x372f6c(()=>new Intl['DateTimeFormat'](_0x21bbc6['localCode'],_0x4882a8)['format'](a0_0x226aea(_0x21bbc6,_0x21bbc6['zone'])),'');}function _0x22dc9a(){return _0x3b9dc0('long');}function _0x364995(){return _0x3b9dc0('short');}function _0x4fd53b(){return _0x3b9dc0('narrow');}const _0x5db86c={};return _0x5db86c['ln']=_0x22dc9a,_0x5db86c['sh']=_0x364995,_0x5db86c['nr']=_0x4fd53b,_0x5db86c;}function a0_0x1de3eb(_0x1b0b6b){let _0x586b20=undefined,_0x38759c=undefined,_0x19e31c=undefined,_0x13dc1e=undefined;try{const _0x3cf48b=(_0x1b0b6b||'')['match'](/\w{2}:\w{2}(:\w{2})?\b/g)[0x0]['split'](':');_0x586b20=_0x3cf48b['length']>=0x1?Number(_0x3cf48b[0x0]):undefined,_0x38759c=_0x3cf48b['length']>=0x2?Number(_0x3cf48b[0x1]):undefined,_0x19e31c=_0x3cf48b['length']>=0x3?Number(_0x3cf48b[0x2]):undefined;}catch(_0x43961a){}try{let _0x2a1ae9=_0x1b0b6b||'',_0x44f713=/\.\d{3}/g,_0x425a14=_0x2a1ae9['match'](_0x44f713)[0x0]['split']('.')['filter'](_0x868624=>Boolean(_0x868624));_0x13dc1e=_0x425a14['length']>=0x1?Number(_0x425a14[0x0]):undefined;}catch(_0xcd5e5d){}const _0x3e9bfc={};return _0x3e9bfc['h']=_0x586b20,_0x3e9bfc['m']=_0x38759c,_0x3e9bfc['s']=_0x19e31c,_0x3e9bfc['ms']=_0x13dc1e,_0x3e9bfc;}let a0_0x54fe91=Intl['NumberFormat']()['resolvedOptions']()['locale'],a0_0x352b20=Intl['DateTimeFormat']()['resolvedOptions']()['timeZone'];class a0_0x10db09{['val'];['code']=Intl['NumberFormat']()['resolvedOptions']()['locale'];['_zone']=Intl['DateTimeFormat']()['resolvedOptions']()['timeZone'];['dyfrmt']=a0_0x15480f(this);get['localCode'](){return this['code'];}get['zone'](){return this['_zone'];}['init'](){return this['val']=a0_0x69cd62['Temporal']['Instant']['fromEpochMilliseconds'](new Date()['getTime']())['toZonedDateTimeISO'](this['zone']),this['dyfrmt']=a0_0x15480f(this),this;}['toString'](){return'TEST';}static['new'](){return new a0_0x10db09()['setCode'](a0_0x54fe91)['setZone'](a0_0x352b20)['init']();}static['setCode'](_0x2f5fd7){return a0_0x54fe91=_0x2f5fd7,this;}static['setZone'](_0x4e04e4){return a0_0x352b20=_0x4e04e4,this;}static['seperator'](){return a0_0x372f6c(()=>new Date()['toLocaleDateString'](a0_0x54fe91)['replace'](/\d/g,'')['split']('')[0x0]);}['cpy'](){return a0_0x372f6c(()=>a0_0x10db09['new']()['setTime'](this['toTime']()));}['setCode'](_0x18cca0){return this['code']=_0x18cca0,this;}['setZone'](_0x186677){return this['_zone']=_0x186677,this;}['seperator'](){return a0_0x372f6c(()=>new Date()['toLocaleDateString'](this['code'])['replace'](/\d/g,'')['split']('')[0x0]);}['timezone'](){return a0_0x372f6c(()=>{return this['zone']||Intl['DateTimeFormat']()?.['resolvedOptions']()?.['timeZone'];},null);}['zones'](_0x2aca47=this['code']){return a0_0x372f6c(()=>{return new Intl['Locale'](_0x2aca47)?.['timeZones']||[];},null);}['region'](_0x1c60fa=this['code']){return a0_0x372f6c(()=>{return new Intl['Locale'](_0x1c60fa)['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 _0x342da4=this['val']['dayOfWeek'];return _0x342da4?_0x342da4:0x7;}['dayOfWeekUtc'](){return this['val']['dayOfWeek']-0x1;}['setYear'](_0x36ab31){const _0x17c8d5={};return _0x17c8d5['year']=_0x36ab31,this['val']['with'](_0x17c8d5),this;}['setMonth'](_0x99a270){const _0xcd4855={};return _0xcd4855['month']=_0x99a270,this['val']['with'](_0xcd4855),this;}['setMonthUtc'](_0xb3018){const _0x47ea20={};return _0x47ea20['month']=_0xb3018+0x1,this['val']['with'](_0x47ea20),this;}['setDay'](_0x1df945){const _0x17322e={};return _0x17322e['day']=_0x1df945,this['val']['with'](_0x17322e),this;}['setHour'](_0x5634d6){const _0x4f8f25={};return _0x4f8f25['hour']=_0x5634d6,this['val']['with'](_0x4f8f25),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'](_0x3c142d){const _0x404f85={};return _0x404f85['minute']=_0x3c142d,this['val']['with'](_0x404f85),this;}['startOfMin'](){return this['setSeconds'](0x0),this['setMilliseconds'](0x0),this;}['endOfMin'](){return this['setSeconds'](0x3b),this['setMilliseconds'](0x3e7),this;}['setSeconds'](_0x1a9bbd){const _0x19640f={};return _0x19640f['second']=_0x1a9bbd,this['val']['with'](_0x19640f),this;}['startOfSeconds'](){return this['setMilliseconds'](0x0),this;}['endOfSeconds'](){return this['setMilliseconds'](0x3e7),this;}['setMilliseconds'](_0x4b419b){const _0x500b1a={};return _0x500b1a['millisecond']=_0x4b419b,this['val']['with'](_0x500b1a),this;}['startOfMilliseconds'](){return this['setMilliseconds'](0x0),this;}['endOfMilliseconds'](){return this['setMilliseconds'](0x3e7),this;}['setIsoDate'](_0xe6c3b5){return this['val']=a0_0x69cd62['Temporal']['Instant']['from'](_0xe6c3b5)['toZonedDateTimeISO'](this['zone']),this;}['setTime'](_0x1d02fe){return this['val']=a0_0x69cd62['Temporal']['Instant']['fromEpochMilliseconds'](_0x1d02fe)['toZonedDateTimeISO'](this['zone']),this;}['setDate'](_0x406803){return this['setIsoDate'](_0x406803?.['toISOString']()),this;}['setDateInputValue'](_0x275729){return this['val']=a0_0x69cd62['Temporal']['Instant']['from'](new Date(_0x275729?.['replace']('T','\x20'))['toISOString']())['toZonedDateTimeISO'](this['zone']),this;}['setVal'](_0x468c67){return a0_0x372f6c(()=>{return a0_0x10db09['new']()['setTime'](a0_0x226aea(_0x468c67,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_0x2542f4(this['month']());}['toDateInput'](){return this['year']()+'-'+a0_0x2542f4(this['month']())+'-'+a0_0x2542f4(this['day']());}['toTimeInput'](_0x45bdc4=!![]){const _0xd02bb7=[];return _0xd02bb7['push'](a0_0x2542f4(this['hours']())),_0xd02bb7['push'](a0_0x2542f4(this['min']())),_0x45bdc4&&_0xd02bb7['push'](a0_0x2542f4(this['sec']())),_0xd02bb7['join'](':');}['toDateTimeInput'](_0x16e3b4=!![]){return this['toDateInput']()+'T'+this['toTimeInput'](_0x16e3b4);}['strDate'](){const _0x46c74f={};return _0x46c74f['month']='2-digit',_0x46c74f['day']='2-digit',_0x46c74f['year']='numeric',this['val']['toLocaleString'](this['code'],_0x46c74f);}['strTime'](){return a0_0x2542f4(this['hours']())+':'+a0_0x2542f4(this['min']())+':'+a0_0x2542f4(this['sec']());}['strHHmm'](){return a0_0x2542f4(this['hours']())+':'+a0_0x2542f4(this['min']());}['str'](){return this['strDate']()+'\x20'+this['strTime']();}['strLocal'](_0x285350){return this['val']['toLocaleString'](this['code'],_0x285350);}['strYears'](){return this['val']['year']['toString']();}['strMounth'](){return a0_0x2542f4(this['month'](),0x2);}['strDay'](){return a0_0x2542f4(this['day'](),0x2);}['strHour'](){return a0_0x2542f4(this['hours'](),0x2);}['strMin'](){return a0_0x2542f4(this['min'](),0x2);}['strSec'](){return a0_0x2542f4(this['sec'](),0x2);}['strMsec'](){return a0_0x2542f4(this['msec'](),0x2);}['strDayStr'](){return{'ln':()=>this['dyfrmt']['ln'](),'sh':()=>this['dyfrmt']['sh'](),'nr':()=>this['dyfrmt']['nr']()};}['addDay'](_0x5f4c30){const _0x21125f={};return _0x21125f['days']=_0x5f4c30,this['val']['add'](_0x21125f),this;}['addHours'](_0x254192){const _0x3d04c7={};return _0x3d04c7['hours']=_0x254192,this['val']['add'](_0x3d04c7),this;}['addMins'](_0x1b28bb){const _0x2e922b={};return _0x2e922b['minutes']=_0x1b28bb,this['val']['add'](_0x2e922b),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'](_0x16728e){return a0_0x372f6c(()=>{return this['cpy']()['toTime']()===a0_0x226aea(_0x16728e,this['zone']);});}['gt'](_0x8a670f){return a0_0x372f6c(()=>{return this['cpy']()['toTime']()>a0_0x226aea(_0x8a670f,this['zone']);});}['gte'](_0x1f979d){return a0_0x372f6c(()=>{return this['cpy']()['toTime']()>=a0_0x226aea(_0x1f979d,this['zone']);});}['lt'](_0x344c6a){return a0_0x372f6c(()=>{return this['cpy']()['toTime']()<a0_0x226aea(_0x344c6a,this['zone']);});}['lte'](_0x4859ed){return a0_0x372f6c(()=>{return this['cpy']()['toTime']()<=a0_0x226aea(_0x4859ed,this['zone']);});}['btw'](_0x1fb715,_0x44f16f){return a0_0x372f6c(()=>{const _0x1f44bf=a0_0x226aea(_0x1fb715,this['zone']),_0x1a17d8=a0_0x226aea(_0x44f16f,this['zone']),_0x3cc8e0=this['cpy']()['toTime']();return _0x1f44bf<_0x3cc8e0&&_0x3cc8e0<_0x1a17d8;});}['btweq'](_0x5b4e3e,_0x4b0f07){return a0_0x372f6c(()=>{const _0x4e2899=a0_0x226aea(_0x5b4e3e,this['zone']),_0x382c41=a0_0x226aea(_0x4b0f07,this['zone']),_0x3607fc=this['cpy']()['toTime']();return _0x4e2899<=_0x3607fc&&_0x3607fc<=_0x382c41;});}['btwEqStart'](_0xe49e3f,_0x2baf55){return a0_0x372f6c(()=>{const _0x4822d4=a0_0x226aea(_0xe49e3f,this['zone']),_0x3e8379=a0_0x226aea(_0x2baf55,this['zone']),_0x4ba888=this['cpy']()['toTime']();return _0x4822d4<=_0x4ba888&&_0x4ba888<_0x3e8379;});}['btwEqEnd'](_0x2b2535,_0x1364b6){return a0_0x372f6c(()=>{const _0x57879b=a0_0x226aea(_0x2b2535,this['zone']),_0x1ccc78=a0_0x226aea(_0x1364b6,this['zone']),_0x3d5697=this['cpy']()['toTime']();return _0x57879b<_0x3d5697&&_0x3d5697<=_0x1ccc78;});}static['diffDays'](_0x560c8e,_0x1da3e1,_0x8d13b9){return a0_0x372f6c(()=>{const _0x15397f=a0_0x226aea(_0x560c8e,a0_0x352b20),_0x165e87=a0_0x226aea(_0x1da3e1,a0_0x352b20);return _0x8d13b9?Math['abs'](_0x15397f-_0x165e87)/0x36ee80/0x18:(_0x15397f-_0x165e87)/0x36ee80/0x18;});}static['diffHours'](_0x41028d,_0x58c30c,_0x357a0b){return a0_0x372f6c(()=>{const _0x4bb9ae=a0_0x226aea(_0x41028d,a0_0x352b20),_0x5bab15=a0_0x226aea(_0x58c30c,a0_0x352b20);return _0x357a0b?Math['abs'](_0x4bb9ae-_0x5bab15)/0x36ee80:(_0x4bb9ae-_0x5bab15)/0x36ee80;});}static['diffMins'](_0x3c4f64,_0x1e5bc2,_0xb5ed2b){return a0_0x372f6c(()=>{const _0x133d65=a0_0x226aea(_0x3c4f64,a0_0x352b20),_0x25474d=a0_0x226aea(_0x1e5bc2,a0_0x352b20);return _0xb5ed2b?Math['abs'](_0x133d65-_0x25474d)/0x3e8/0x3c:(_0x133d65-_0x25474d)/0x3e8/0x3c;});}static['diffSecs'](_0x36e712,_0xaeec21,_0x29a0ee){return a0_0x372f6c(()=>{const _0x5127b3=a0_0x226aea(_0x36e712,a0_0x352b20),_0x1c57cb=a0_0x226aea(_0xaeec21,a0_0x352b20);return _0x29a0ee?Math['abs'](_0x5127b3-_0x1c57cb)/0x3e8:(_0x5127b3-_0x1c57cb)/0x3e8;});}static['divideTime'](_0x54fe08){return a0_0x372f6c(()=>a0_0x1de3eb(_0x54fe08));}}exports['MDateUtil']=a0_0x10db09;const a0_0x34bdd4={};a0_0x34bdd4['value']='mdateutil',a0_0x34bdd4['writable']=![],a0_0x34bdd4['enumerable']=!![],a0_0x34bdd4['configurable']=![],Object['defineProperty'](a0_0x10db09['prototype'],'idkey',a0_0x34bdd4);
|
|
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);
|