údržba
This commit is contained in:
4
CyLukTs/lukan/node_modules/dayjs/plugin/advancedFormat.d.ts
generated
vendored
Normal file
4
CyLukTs/lukan/node_modules/dayjs/plugin/advancedFormat.d.ts
generated
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/advancedFormat.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/advancedFormat.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_advancedFormat=t()}(this,(function(){"use strict";return function(e,t){var r=t.prototype,n=r.format;r.format=function(e){var t=this,r=this.$locale();if(!this.isValid())return n.bind(this)(e);var s=this.$utils(),a=(e||"YYYY-MM-DDTHH:mm:ssZ").replace(/\[([^\]]+)]|Q|wo|ww|w|WW|W|zzz|z|gggg|GGGG|Do|X|x|k{1,2}|S/g,(function(e){switch(e){case"Q":return Math.ceil((t.$M+1)/3);case"Do":return r.ordinal(t.$D);case"gggg":return t.weekYear();case"GGGG":return t.isoWeekYear();case"wo":return r.ordinal(t.week(),"W");case"w":case"ww":return s.s(t.week(),"w"===e?1:2,"0");case"W":case"WW":return s.s(t.isoWeek(),"W"===e?1:2,"0");case"k":case"kk":return s.s(String(0===t.$H?24:t.$H),"k"===e?1:2,"0");case"X":return Math.floor(t.$d.getTime()/1e3);case"x":return t.$d.getTime();case"z":return"["+t.offsetName()+"]";case"zzz":return"["+t.offsetName("long")+"]";default:return e}}));return n.bind(this)(a)}}}));
|
10
CyLukTs/lukan/node_modules/dayjs/plugin/arraySupport.d.ts
generated
vendored
Normal file
10
CyLukTs/lukan/node_modules/dayjs/plugin/arraySupport.d.ts
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface ConfigTypeMap {
|
||||
arraySupport: [number?, number?, number?, number?, number?, number?, number?]
|
||||
}
|
||||
}
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/arraySupport.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/arraySupport.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_arraySupport=t()}(this,(function(){"use strict";return function(e,t,n){var o=t.prototype,i=function(e){var t=e.date,o=e.utc;return Array.isArray(t)?o?t.length?new Date(Date.UTC.apply(null,t)):new Date:1===t.length?n(String(t[0])).toDate():new(Function.prototype.bind.apply(Date,[null].concat(t))):t},a=o.parse;o.parse=function(e){e.date=i.bind(this)(e),a.bind(this)(e)}}}));
|
4
CyLukTs/lukan/node_modules/dayjs/plugin/badMutable.d.ts
generated
vendored
Normal file
4
CyLukTs/lukan/node_modules/dayjs/plugin/badMutable.d.ts
generated
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/badMutable.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/badMutable.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(t,i){"object"==typeof exports&&"undefined"!=typeof module?module.exports=i():"function"==typeof define&&define.amd?define(i):(t="undefined"!=typeof globalThis?globalThis:t||self).dayjs_plugin_badMutable=i()}(this,(function(){"use strict";return function(t,i){var n=i.prototype;n.$g=function(t,i,n){return this.$utils().u(t)?this[i]:this.$set(n,t)},n.set=function(t,i){return this.$set(t,i)};var e=n.startOf;n.startOf=function(t,i){return this.$d=e.bind(this)(t,i).toDate(),this.init(),this};var s=n.add;n.add=function(t,i){return this.$d=s.bind(this)(t,i).toDate(),this.init(),this};var o=n.locale;n.locale=function(t,i){return t?(this.$L=o.bind(this)(t,i).$L,this):this.$L};var r=n.daysInMonth;n.daysInMonth=function(){return r.bind(this.clone())()};var u=n.isSame;n.isSame=function(t,i){return u.bind(this.clone())(t,i)};var f=n.isBefore;n.isBefore=function(t,i){return f.bind(this.clone())(t,i)};var d=n.isAfter;n.isAfter=function(t,i){return d.bind(this.clone())(t,i)}}}));
|
11
CyLukTs/lukan/node_modules/dayjs/plugin/bigIntSupport.d.ts
generated
vendored
Normal file
11
CyLukTs/lukan/node_modules/dayjs/plugin/bigIntSupport.d.ts
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface ConfigTypeMap {
|
||||
bigIntSupport: BigInt
|
||||
}
|
||||
export function unix(t: BigInt): Dayjs
|
||||
}
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/bigIntSupport.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/bigIntSupport.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(n,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(n="undefined"!=typeof globalThis?globalThis:n||self).dayjs_plugin_bigIntSupport=e()}(this,(function(){"use strict";var n=function(n){return"bigint"==typeof n};return function(e,t,i){var o=t.prototype,u=function(e){var t=e.date;return n(t)?Number(t):t},r=o.parse;o.parse=function(n){n.date=u.bind(this)(n),r.bind(this)(n)};var f=i.unix;i.unix=function(e){var t=n(e)?Number(e):e;return f(t)}}}));
|
4
CyLukTs/lukan/node_modules/dayjs/plugin/buddhistEra.d.ts
generated
vendored
Normal file
4
CyLukTs/lukan/node_modules/dayjs/plugin/buddhistEra.d.ts
generated
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/buddhistEra.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/buddhistEra.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).dayjs_plugin_buddhistEra=e()}(this,(function(){"use strict";return function(t,e){var n=e.prototype,i=n.format;n.format=function(t){var e=this,n=(t||"YYYY-MM-DDTHH:mm:ssZ").replace(/(\[[^\]]+])|BBBB|BB/g,(function(t,n){var i,o=String(e.$y+543),f="BB"===t?[o.slice(-2),2]:[o,4];return n||(i=e.$utils()).s.apply(i,f.concat(["0"]))}));return i.bind(this)(n)}}}));
|
10
CyLukTs/lukan/node_modules/dayjs/plugin/calendar.d.ts
generated
vendored
Normal file
10
CyLukTs/lukan/node_modules/dayjs/plugin/calendar.d.ts
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import { PluginFunc, ConfigType } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
calendar(referenceTime?: ConfigType, formats?: object): string
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/calendar.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/calendar.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_calendar=t()}(this,(function(){"use strict";return function(e,t,a){var n="h:mm A",d={lastDay:"[Yesterday at] "+n,sameDay:"[Today at] "+n,nextDay:"[Tomorrow at] "+n,nextWeek:"dddd [at] "+n,lastWeek:"[Last] dddd [at] "+n,sameElse:"MM/DD/YYYY"};t.prototype.calendar=function(e,t){var n=t||this.$locale().calendar||d,o=a(e||void 0).startOf("d"),s=this.diff(o,"d",!0),i="sameElse",f=s<-6?i:s<-1?"lastWeek":s<0?"lastDay":s<1?"sameDay":s<2?"nextDay":s<7?"nextWeek":i,l=n[f]||d[f];return"function"==typeof l?l.call(this,a()):this.format(l)}}}));
|
8
CyLukTs/lukan/node_modules/dayjs/plugin/customParseFormat.d.ts
generated
vendored
Normal file
8
CyLukTs/lukan/node_modules/dayjs/plugin/customParseFormat.d.ts
generated
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare interface PluginOptions {
|
||||
parseTwoDigitYear?: (yearString: string) => number
|
||||
}
|
||||
|
||||
declare const plugin: PluginFunc<PluginOptions>
|
||||
export = plugin
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/customParseFormat.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/customParseFormat.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_customParseFormat=t()}(this,(function(){"use strict";var e={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"},t=/(\[[^[]*\])|([-_:/.,()\s]+)|(A|a|YYYY|YY?|MM?M?M?|Do|DD?|hh?|HH?|mm?|ss?|S{1,3}|z|ZZ?)/g,n=/\d\d/,r=/\d\d?/,i=/\d*[^-_:/,()\s\d]+/,o={},s=function(e){return(e=+e)+(e>68?1900:2e3)};var a=function(e){return function(t){this[e]=+t}},f=[/[+-]\d\d:?(\d\d)?|Z/,function(e){(this.zone||(this.zone={})).offset=function(e){if(!e)return 0;if("Z"===e)return 0;var t=e.match(/([+-]|\d\d)/g),n=60*t[1]+(+t[2]||0);return 0===n?0:"+"===t[0]?-n:n}(e)}],h=function(e){var t=o[e];return t&&(t.indexOf?t:t.s.concat(t.f))},u=function(e,t){var n,r=o.meridiem;if(r){for(var i=1;i<=24;i+=1)if(e.indexOf(r(i,0,t))>-1){n=i>12;break}}else n=e===(t?"pm":"PM");return n},d={A:[i,function(e){this.afternoon=u(e,!1)}],a:[i,function(e){this.afternoon=u(e,!0)}],S:[/\d/,function(e){this.milliseconds=100*+e}],SS:[n,function(e){this.milliseconds=10*+e}],SSS:[/\d{3}/,function(e){this.milliseconds=+e}],s:[r,a("seconds")],ss:[r,a("seconds")],m:[r,a("minutes")],mm:[r,a("minutes")],H:[r,a("hours")],h:[r,a("hours")],HH:[r,a("hours")],hh:[r,a("hours")],D:[r,a("day")],DD:[n,a("day")],Do:[i,function(e){var t=o.ordinal,n=e.match(/\d+/);if(this.day=n[0],t)for(var r=1;r<=31;r+=1)t(r).replace(/\[|\]/g,"")===e&&(this.day=r)}],M:[r,a("month")],MM:[n,a("month")],MMM:[i,function(e){var t=h("months"),n=(h("monthsShort")||t.map((function(e){return e.slice(0,3)}))).indexOf(e)+1;if(n<1)throw new Error;this.month=n%12||n}],MMMM:[i,function(e){var t=h("months").indexOf(e)+1;if(t<1)throw new Error;this.month=t%12||t}],Y:[/[+-]?\d+/,a("year")],YY:[n,function(e){this.year=s(e)}],YYYY:[/\d{4}/,a("year")],Z:f,ZZ:f};function c(n){var r,i;r=n,i=o&&o.formats;for(var s=(n=r.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g,(function(t,n,r){var o=r&&r.toUpperCase();return n||i[r]||e[r]||i[o].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,(function(e,t,n){return t||n.slice(1)}))}))).match(t),a=s.length,f=0;f<a;f+=1){var h=s[f],u=d[h],c=u&&u[0],l=u&&u[1];s[f]=l?{regex:c,parser:l}:h.replace(/^\[|\]$/g,"")}return function(e){for(var t={},n=0,r=0;n<a;n+=1){var i=s[n];if("string"==typeof i)r+=i.length;else{var o=i.regex,f=i.parser,h=e.slice(r),u=o.exec(h)[0];f.call(t,u),e=e.replace(u,"")}}return function(e){var t=e.afternoon;if(void 0!==t){var n=e.hours;t?n<12&&(e.hours+=12):12===n&&(e.hours=0),delete e.afternoon}}(t),t}}return function(e,t,n){n.p.customParseFormat=!0,e&&e.parseTwoDigitYear&&(s=e.parseTwoDigitYear);var r=t.prototype,i=r.parse;r.parse=function(e){var t=e.date,r=e.utc,s=e.args;this.$u=r;var a=s[1];if("string"==typeof a){var f=!0===s[2],h=!0===s[3],u=f||h,d=s[2];h&&(d=s[2]),o=this.$locale(),!f&&d&&(o=n.Ls[d]),this.$d=function(e,t,n){try{if(["x","X"].indexOf(t)>-1)return new Date(("X"===t?1e3:1)*e);var r=c(t)(e),i=r.year,o=r.month,s=r.day,a=r.hours,f=r.minutes,h=r.seconds,u=r.milliseconds,d=r.zone,l=new Date,m=s||(i||o?1:l.getDate()),M=i||l.getFullYear(),Y=0;i&&!o||(Y=o>0?o-1:l.getMonth());var p=a||0,v=f||0,D=h||0,g=u||0;return d?new Date(Date.UTC(M,Y,m,p,v,D,g+60*d.offset*1e3)):n?new Date(Date.UTC(M,Y,m,p,v,D,g)):new Date(M,Y,m,p,v,D,g)}catch(e){return new Date("")}}(t,a,r),this.init(),d&&!0!==d&&(this.$L=this.locale(d).$L),u&&t!=this.format(a)&&(this.$d=new Date("")),o={}}else if(a instanceof Array)for(var l=a.length,m=1;m<=l;m+=1){s[1]=a[m-1];var M=n.apply(this,s);if(M.isValid()){this.$d=M.$d,this.$L=M.$L,this.init();break}m===l&&(this.$d=new Date(""))}else i.call(this,e)}}}));
|
11
CyLukTs/lukan/node_modules/dayjs/plugin/dayOfYear.d.ts
generated
vendored
Normal file
11
CyLukTs/lukan/node_modules/dayjs/plugin/dayOfYear.d.ts
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
dayOfYear(): number
|
||||
dayOfYear(value: number): Dayjs
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/dayOfYear.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/dayOfYear.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_dayOfYear=t()}(this,(function(){"use strict";return function(e,t,n){t.prototype.dayOfYear=function(e){var t=Math.round((n(this).startOf("day")-n(this).startOf("year"))/864e5)+1;return null==e?t:this.add(e-t,"day")}}}));
|
4
CyLukTs/lukan/node_modules/dayjs/plugin/devHelper.d.ts
generated
vendored
Normal file
4
CyLukTs/lukan/node_modules/dayjs/plugin/devHelper.d.ts
generated
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/devHelper.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/devHelper.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(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,n=s.parse;s.parse=function(e){var t=e.date;return"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"),"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"),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"),n.bind(this)(e)};var a=o.locale;o.locale=function(e,t,s){return 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")),a(e,t,s)}}}}));
|
88
CyLukTs/lukan/node_modules/dayjs/plugin/duration.d.ts
generated
vendored
Normal file
88
CyLukTs/lukan/node_modules/dayjs/plugin/duration.d.ts
generated
vendored
Normal file
@ -0,0 +1,88 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
import { OpUnitType, UnitTypeLongPlural } from 'dayjs';
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export as namespace plugin;
|
||||
export = plugin
|
||||
|
||||
declare namespace plugin {
|
||||
/**
|
||||
* @deprecated Please use more strict types
|
||||
*/
|
||||
type DurationInputType = string | number | object
|
||||
/**
|
||||
* @deprecated Please use more strict types
|
||||
*/
|
||||
type DurationAddType = number | object | Duration
|
||||
|
||||
type DurationUnitsObjectType = Partial<{
|
||||
[unit in Exclude<UnitTypeLongPlural, "dates"> | "weeks"]: number
|
||||
}>;
|
||||
type DurationUnitType = Exclude<OpUnitType, "date" | "dates">
|
||||
type CreateDurationType =
|
||||
((units: DurationUnitsObjectType) => Duration)
|
||||
& ((time: number, unit?: DurationUnitType) => Duration)
|
||||
& ((ISO_8601: string) => Duration)
|
||||
type AddDurationType = CreateDurationType & ((duration: Duration) => Duration)
|
||||
|
||||
interface Duration {
|
||||
new (input: string | number | object, unit?: string, locale?: string): Duration
|
||||
|
||||
clone(): Duration
|
||||
|
||||
humanize(withSuffix?: boolean): string
|
||||
|
||||
milliseconds(): number
|
||||
asMilliseconds(): number
|
||||
|
||||
seconds(): number
|
||||
asSeconds(): number
|
||||
|
||||
minutes(): number
|
||||
asMinutes(): number
|
||||
|
||||
hours(): number
|
||||
asHours(): number
|
||||
|
||||
days(): number
|
||||
asDays(): number
|
||||
|
||||
weeks(): number
|
||||
asWeeks(): number
|
||||
|
||||
months(): number
|
||||
asMonths(): number
|
||||
|
||||
years(): number
|
||||
asYears(): number
|
||||
|
||||
as(unit: DurationUnitType): number
|
||||
|
||||
get(unit: DurationUnitType): number
|
||||
|
||||
add: AddDurationType
|
||||
|
||||
subtract: AddDurationType
|
||||
|
||||
toJSON(): string
|
||||
|
||||
toISOString(): string
|
||||
|
||||
format(formatStr?: string): string
|
||||
|
||||
locale(locale: string): Duration
|
||||
}
|
||||
}
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
add(duration: plugin.Duration): Dayjs
|
||||
subtract(duration: plugin.Duration): Dayjs
|
||||
}
|
||||
|
||||
/**
|
||||
* @param time If unit is not present, time treated as number of milliseconds
|
||||
*/
|
||||
export const duration: plugin.CreateDurationType;
|
||||
export function isDuration(d: any): d is plugin.Duration
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/duration.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/duration.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(t,s){"object"==typeof exports&&"undefined"!=typeof module?module.exports=s():"function"==typeof define&&define.amd?define(s):(t="undefined"!=typeof globalThis?globalThis:t||self).dayjs_plugin_duration=s()}(this,(function(){"use strict";var t,s,n=1e3,i=6e4,e=36e5,r=864e5,o=/\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g,u=31536e6,h=2592e6,a=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/,d={years:u,months:h,days:r,hours:e,minutes:i,seconds:n,milliseconds:1,weeks:6048e5},c=function(t){return t instanceof g},f=function(t,s,n){return new g(t,n,s.$l)},l=function(t){return s.p(t)+"s"},m=function(t){return t<0},$=function(t){return m(t)?Math.ceil(t):Math.floor(t)},y=function(t){return Math.abs(t)},v=function(t,s){return t?m(t)?{negative:!0,format:""+y(t)+s}:{negative:!1,format:""+t+s}:{negative:!1,format:""}},g=function(){function m(t,s,n){var i=this;if(this.$d={},this.$l=n,void 0===t&&(this.$ms=0,this.parseFromMilliseconds()),s)return f(t*d[l(s)],this);if("number"==typeof t)return this.$ms=t,this.parseFromMilliseconds(),this;if("object"==typeof t)return Object.keys(t).forEach((function(s){i.$d[l(s)]=t[s]})),this.calMilliseconds(),this;if("string"==typeof t){var e=t.match(a);if(e){var r=e.slice(2).map((function(t){return null!=t?Number(t):0}));return this.$d.years=r[0],this.$d.months=r[1],this.$d.weeks=r[2],this.$d.days=r[3],this.$d.hours=r[4],this.$d.minutes=r[5],this.$d.seconds=r[6],this.calMilliseconds(),this}}return this}var y=m.prototype;return y.calMilliseconds=function(){var t=this;this.$ms=Object.keys(this.$d).reduce((function(s,n){return s+(t.$d[n]||0)*d[n]}),0)},y.parseFromMilliseconds=function(){var t=this.$ms;this.$d.years=$(t/u),t%=u,this.$d.months=$(t/h),t%=h,this.$d.days=$(t/r),t%=r,this.$d.hours=$(t/e),t%=e,this.$d.minutes=$(t/i),t%=i,this.$d.seconds=$(t/n),t%=n,this.$d.milliseconds=t},y.toISOString=function(){var t=v(this.$d.years,"Y"),s=v(this.$d.months,"M"),n=+this.$d.days||0;this.$d.weeks&&(n+=7*this.$d.weeks);var i=v(n,"D"),e=v(this.$d.hours,"H"),r=v(this.$d.minutes,"M"),o=this.$d.seconds||0;this.$d.milliseconds&&(o+=this.$d.milliseconds/1e3);var u=v(o,"S"),h=t.negative||s.negative||i.negative||e.negative||r.negative||u.negative,a=e.format||r.format||u.format?"T":"",d=(h?"-":"")+"P"+t.format+s.format+i.format+a+e.format+r.format+u.format;return"P"===d||"-P"===d?"P0D":d},y.toJSON=function(){return this.toISOString()},y.format=function(t){var n=t||"YYYY-MM-DDTHH:mm:ss",i={Y:this.$d.years,YY:s.s(this.$d.years,2,"0"),YYYY:s.s(this.$d.years,4,"0"),M:this.$d.months,MM:s.s(this.$d.months,2,"0"),D:this.$d.days,DD:s.s(this.$d.days,2,"0"),H:this.$d.hours,HH:s.s(this.$d.hours,2,"0"),m:this.$d.minutes,mm:s.s(this.$d.minutes,2,"0"),s:this.$d.seconds,ss:s.s(this.$d.seconds,2,"0"),SSS:s.s(this.$d.milliseconds,3,"0")};return n.replace(o,(function(t,s){return s||String(i[t])}))},y.as=function(t){return this.$ms/d[l(t)]},y.get=function(t){var s=this.$ms,n=l(t);return"milliseconds"===n?s%=1e3:s="weeks"===n?$(s/d[n]):this.$d[n],0===s?0:s},y.add=function(t,s,n){var i;return i=s?t*d[l(s)]:c(t)?t.$ms:f(t,this).$ms,f(this.$ms+i*(n?-1:1),this)},y.subtract=function(t,s){return this.add(t,s,!0)},y.locale=function(t){var s=this.clone();return s.$l=t,s},y.clone=function(){return f(this.$ms,this)},y.humanize=function(s){return t().add(this.$ms,"ms").locale(this.$l).fromNow(!s)},y.valueOf=function(){return this.asMilliseconds()},y.milliseconds=function(){return this.get("milliseconds")},y.asMilliseconds=function(){return this.as("milliseconds")},y.seconds=function(){return this.get("seconds")},y.asSeconds=function(){return this.as("seconds")},y.minutes=function(){return this.get("minutes")},y.asMinutes=function(){return this.as("minutes")},y.hours=function(){return this.get("hours")},y.asHours=function(){return this.as("hours")},y.days=function(){return this.get("days")},y.asDays=function(){return this.as("days")},y.weeks=function(){return this.get("weeks")},y.asWeeks=function(){return this.as("weeks")},y.months=function(){return this.get("months")},y.asMonths=function(){return this.as("months")},y.years=function(){return this.get("years")},y.asYears=function(){return this.as("years")},m}();return function(n,i,e){t=e,s=e().$utils(),e.duration=function(t,s){var n=e.locale();return f(t,{$l:n},s)},e.isDuration=c;var r=i.prototype.add,o=i.prototype.subtract;i.prototype.add=function(t,s){return c(t)&&(t=t.asMilliseconds()),r.bind(this)(t,s)},i.prototype.subtract=function(t,s){return c(t)&&(t=t.asMilliseconds()),o.bind(this)(t,s)}}}));
|
10
CyLukTs/lukan/node_modules/dayjs/plugin/isBetween.d.ts
generated
vendored
Normal file
10
CyLukTs/lukan/node_modules/dayjs/plugin/isBetween.d.ts
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import { PluginFunc, ConfigType, OpUnitType } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
isBetween(a: ConfigType, b: ConfigType, c?: OpUnitType | null, d?: '()' | '[]' | '[)' | '(]'): boolean
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/isBetween.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/isBetween.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,i){"object"==typeof exports&&"undefined"!=typeof module?module.exports=i():"function"==typeof define&&define.amd?define(i):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_isBetween=i()}(this,(function(){"use strict";return function(e,i,t){i.prototype.isBetween=function(e,i,s,f){var n=t(e),o=t(i),r="("===(f=f||"()")[0],u=")"===f[1];return(r?this.isAfter(n,s):!this.isBefore(n,s))&&(u?this.isBefore(o,s):!this.isAfter(o,s))||(r?this.isBefore(n,s):!this.isAfter(n,s))&&(u?this.isAfter(o,s):!this.isBefore(o,s))}}}));
|
10
CyLukTs/lukan/node_modules/dayjs/plugin/isLeapYear.d.ts
generated
vendored
Normal file
10
CyLukTs/lukan/node_modules/dayjs/plugin/isLeapYear.d.ts
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
isLeapYear(): boolean
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/isLeapYear.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/isLeapYear.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_isLeapYear=t()}(this,(function(){"use strict";return function(e,t){t.prototype.isLeapYear=function(){return this.$y%4==0&&this.$y%100!=0||this.$y%400==0}}}));
|
10
CyLukTs/lukan/node_modules/dayjs/plugin/isMoment.d.ts
generated
vendored
Normal file
10
CyLukTs/lukan/node_modules/dayjs/plugin/isMoment.d.ts
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
|
||||
export function isMoment(input: any): boolean
|
||||
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/isMoment.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/isMoment.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_isMoment=n()}(this,(function(){"use strict";return function(e,n,t){t.isMoment=function(e){return t.isDayjs(e)}}}));
|
10
CyLukTs/lukan/node_modules/dayjs/plugin/isSameOrAfter.d.ts
generated
vendored
Normal file
10
CyLukTs/lukan/node_modules/dayjs/plugin/isSameOrAfter.d.ts
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import { PluginFunc, ConfigType, OpUnitType } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
isSameOrAfter(date?: ConfigType, unit?: OpUnitType): boolean
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/isSameOrAfter.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/isSameOrAfter.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_isSameOrAfter=t()}(this,(function(){"use strict";return function(e,t){t.prototype.isSameOrAfter=function(e,t){return this.isSame(e,t)||this.isAfter(e,t)}}}));
|
10
CyLukTs/lukan/node_modules/dayjs/plugin/isSameOrBefore.d.ts
generated
vendored
Normal file
10
CyLukTs/lukan/node_modules/dayjs/plugin/isSameOrBefore.d.ts
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import { PluginFunc, ConfigType, OpUnitType } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
isSameOrBefore(date?: ConfigType, unit?: OpUnitType): boolean
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/isSameOrBefore.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/isSameOrBefore.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,i){"object"==typeof exports&&"undefined"!=typeof module?module.exports=i():"function"==typeof define&&define.amd?define(i):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_isSameOrBefore=i()}(this,(function(){"use strict";return function(e,i){i.prototype.isSameOrBefore=function(e,i){return this.isSame(e,i)||this.isBefore(e,i)}}}));
|
10
CyLukTs/lukan/node_modules/dayjs/plugin/isToday.d.ts
generated
vendored
Normal file
10
CyLukTs/lukan/node_modules/dayjs/plugin/isToday.d.ts
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
isToday(): boolean
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/isToday.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/isToday.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,o){"object"==typeof exports&&"undefined"!=typeof module?module.exports=o():"function"==typeof define&&define.amd?define(o):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_isToday=o()}(this,(function(){"use strict";return function(e,o,t){o.prototype.isToday=function(){var e="YYYY-MM-DD",o=t();return this.format(e)===o.format(e)}}}));
|
10
CyLukTs/lukan/node_modules/dayjs/plugin/isTomorrow.d.ts
generated
vendored
Normal file
10
CyLukTs/lukan/node_modules/dayjs/plugin/isTomorrow.d.ts
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
isTomorrow(): boolean
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/isTomorrow.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/isTomorrow.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(o,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(o="undefined"!=typeof globalThis?globalThis:o||self).dayjs_plugin_isTomorrow=e()}(this,(function(){"use strict";return function(o,e,t){e.prototype.isTomorrow=function(){var o="YYYY-MM-DD",e=t().add(1,"day");return this.format(o)===e.format(o)}}}));
|
10
CyLukTs/lukan/node_modules/dayjs/plugin/isYesterday.d.ts
generated
vendored
Normal file
10
CyLukTs/lukan/node_modules/dayjs/plugin/isYesterday.d.ts
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
isYesterday(): boolean
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/isYesterday.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/isYesterday.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_isYesterday=t()}(this,(function(){"use strict";return function(e,t,n){t.prototype.isYesterday=function(){var e="YYYY-MM-DD",t=n().subtract(1,"day");return this.format(e)===t.format(e)}}}));
|
27
CyLukTs/lukan/node_modules/dayjs/plugin/isoWeek.d.ts
generated
vendored
Normal file
27
CyLukTs/lukan/node_modules/dayjs/plugin/isoWeek.d.ts
generated
vendored
Normal file
@ -0,0 +1,27 @@
|
||||
import { PluginFunc, OpUnitType, ConfigType } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
type ISOUnitType = OpUnitType | 'isoWeek';
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
isoWeekYear(): number
|
||||
isoWeek(): number
|
||||
isoWeek(value: number): Dayjs
|
||||
|
||||
isoWeekday(): number
|
||||
isoWeekday(value: number): Dayjs
|
||||
|
||||
startOf(unit: ISOUnitType): Dayjs
|
||||
|
||||
endOf(unit: ISOUnitType): Dayjs
|
||||
|
||||
isSame(date?: ConfigType, unit?: ISOUnitType): boolean
|
||||
|
||||
isBefore(date?: ConfigType, unit?: ISOUnitType): boolean
|
||||
|
||||
isAfter(date?: ConfigType, unit?: ISOUnitType): boolean
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/isoWeek.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/isoWeek.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_isoWeek=t()}(this,(function(){"use strict";var e="day";return function(t,i,s){var a=function(t){return t.add(4-t.isoWeekday(),e)},d=i.prototype;d.isoWeekYear=function(){return a(this).year()},d.isoWeek=function(t){if(!this.$utils().u(t))return this.add(7*(t-this.isoWeek()),e);var i,d,n,o,r=a(this),u=(i=this.isoWeekYear(),d=this.$u,n=(d?s.utc:s)().year(i).startOf("year"),o=4-n.isoWeekday(),n.isoWeekday()>4&&(o+=7),n.add(o,e));return r.diff(u,"week")+1},d.isoWeekday=function(e){return this.$utils().u(e)?this.day()||7:this.day(this.day()%7?e:e-7)};var n=d.startOf;d.startOf=function(e,t){var i=this.$utils(),s=!!i.u(t)||t;return"isoweek"===i.p(e)?s?this.date(this.date()-(this.isoWeekday()-1)).startOf("day"):this.date(this.date()-1-(this.isoWeekday()-1)+7).endOf("day"):n.bind(this)(e,t)}}}));
|
10
CyLukTs/lukan/node_modules/dayjs/plugin/isoWeeksInYear.d.ts
generated
vendored
Normal file
10
CyLukTs/lukan/node_modules/dayjs/plugin/isoWeeksInYear.d.ts
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
isoWeeksInYear(): number
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/isoWeeksInYear.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/isoWeeksInYear.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_isoWeeksInYear=n()}(this,(function(){"use strict";return function(e,n){n.prototype.isoWeeksInYear=function(){var e=this.isLeapYear(),n=this.endOf("y").day();return 4===n||e&&5===n?53:52}}}));
|
44
CyLukTs/lukan/node_modules/dayjs/plugin/localeData.d.ts
generated
vendored
Normal file
44
CyLukTs/lukan/node_modules/dayjs/plugin/localeData.d.ts
generated
vendored
Normal file
@ -0,0 +1,44 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
type WeekdayNames = [string, string, string, string, string, string, string];
|
||||
type MonthNames = [string, string, string, string, string, string, string, string, string, string, string, string];
|
||||
|
||||
interface InstanceLocaleDataReturn {
|
||||
firstDayOfWeek(): number;
|
||||
weekdays(instance?: Dayjs): WeekdayNames;
|
||||
weekdaysShort(instance?: Dayjs): WeekdayNames;
|
||||
weekdaysMin(instance?: Dayjs): WeekdayNames;
|
||||
months(instance?: Dayjs): MonthNames;
|
||||
monthsShort(instance?: Dayjs): MonthNames;
|
||||
longDateFormat(format: string): string;
|
||||
meridiem(hour?: number, minute?: number, isLower?: boolean): string;
|
||||
ordinal(n: number): string
|
||||
}
|
||||
|
||||
interface GlobalLocaleDataReturn {
|
||||
firstDayOfWeek(): number;
|
||||
weekdays(): WeekdayNames;
|
||||
weekdaysShort(): WeekdayNames;
|
||||
weekdaysMin(): WeekdayNames;
|
||||
months(): MonthNames;
|
||||
monthsShort(): MonthNames;
|
||||
longDateFormat(format: string): string;
|
||||
meridiem(hour?: number, minute?: number, isLower?: boolean): string;
|
||||
ordinal(n: number): string
|
||||
}
|
||||
|
||||
interface Dayjs {
|
||||
localeData(): InstanceLocaleDataReturn;
|
||||
}
|
||||
|
||||
export function weekdays(localOrder?: boolean): WeekdayNames;
|
||||
export function weekdaysShort(localOrder?: boolean): WeekdayNames;
|
||||
export function weekdaysMin(localOrder?: boolean): WeekdayNames;
|
||||
export function monthsShort(): MonthNames;
|
||||
export function months(): MonthNames;
|
||||
export function localeData(): GlobalLocaleDataReturn;
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/localeData.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/localeData.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(n,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(n="undefined"!=typeof globalThis?globalThis:n||self).dayjs_plugin_localeData=e()}(this,(function(){"use strict";return function(n,e,t){var r=e.prototype,o=function(n){return n&&(n.indexOf?n:n.s)},u=function(n,e,t,r,u){var i=n.name?n:n.$locale(),a=o(i[e]),s=o(i[t]),f=a||s.map((function(n){return n.slice(0,r)}));if(!u)return f;var d=i.weekStart;return f.map((function(n,e){return f[(e+(d||0))%7]}))},i=function(){return t.Ls[t.locale()]},a=function(n,e){return n.formats[e]||function(n){return n.replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,(function(n,e,t){return e||t.slice(1)}))}(n.formats[e.toUpperCase()])},s=function(){var n=this;return{months:function(e){return e?e.format("MMMM"):u(n,"months")},monthsShort:function(e){return e?e.format("MMM"):u(n,"monthsShort","months",3)},firstDayOfWeek:function(){return n.$locale().weekStart||0},weekdays:function(e){return e?e.format("dddd"):u(n,"weekdays")},weekdaysMin:function(e){return e?e.format("dd"):u(n,"weekdaysMin","weekdays",2)},weekdaysShort:function(e){return e?e.format("ddd"):u(n,"weekdaysShort","weekdays",3)},longDateFormat:function(e){return a(n.$locale(),e)},meridiem:this.$locale().meridiem,ordinal:this.$locale().ordinal}};r.localeData=function(){return s.bind(this)()},t.localeData=function(){var n=i();return{firstDayOfWeek:function(){return n.weekStart||0},weekdays:function(){return t.weekdays()},weekdaysShort:function(){return t.weekdaysShort()},weekdaysMin:function(){return t.weekdaysMin()},months:function(){return t.months()},monthsShort:function(){return t.monthsShort()},longDateFormat:function(e){return a(n,e)},meridiem:n.meridiem,ordinal:n.ordinal}},t.months=function(){return u(i(),"months")},t.monthsShort=function(){return u(i(),"monthsShort","months",3)},t.weekdays=function(n){return u(i(),"weekdays",null,null,n)},t.weekdaysShort=function(n){return u(i(),"weekdaysShort","weekdays",3,n)},t.weekdaysMin=function(n){return u(i(),"weekdaysMin","weekdays",2,n)}}}));
|
4
CyLukTs/lukan/node_modules/dayjs/plugin/localizedFormat.d.ts
generated
vendored
Normal file
4
CyLukTs/lukan/node_modules/dayjs/plugin/localizedFormat.d.ts
generated
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/localizedFormat.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/localizedFormat.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_localizedFormat=t()}(this,(function(){"use strict";var e={LTS:"h:mm:ss A",LT:"h:mm A",L:"MM/DD/YYYY",LL:"MMMM D, YYYY",LLL:"MMMM D, YYYY h:mm A",LLLL:"dddd, MMMM D, YYYY h:mm A"};return function(t,o,n){var r=o.prototype,i=r.format;n.en.formats=e,r.format=function(t){void 0===t&&(t="YYYY-MM-DDTHH:mm:ssZ");var o=this.$locale().formats,n=function(t,o){return t.replace(/(\[[^\]]+])|(LTS?|l{1,4}|L{1,4})/g,(function(t,n,r){var i=r&&r.toUpperCase();return n||o[r]||e[r]||o[i].replace(/(\[[^\]]+])|(MMMM|MM|DD|dddd)/g,(function(e,t,o){return t||o.slice(1)}))}))}(t,void 0===o?{}:o);return i.call(this,n)}}}));
|
11
CyLukTs/lukan/node_modules/dayjs/plugin/minMax.d.ts
generated
vendored
Normal file
11
CyLukTs/lukan/node_modules/dayjs/plugin/minMax.d.ts
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
export function max(dayjs: Dayjs[]): Dayjs
|
||||
export function max(...dayjs: Dayjs[]): Dayjs
|
||||
export function min(dayjs: Dayjs[]): Dayjs
|
||||
export function min(...dayjs: Dayjs[]): Dayjs
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/minMax.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/minMax.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_minMax=n()}(this,(function(){"use strict";return function(e,n,t){var i=function(e,n){if(!n||!n.length||!n[0]||1===n.length&&!n[0].length)return null;var t;1===n.length&&n[0].length>0&&(n=n[0]);t=n[0];for(var i=1;i<n.length;i+=1)n[i].isValid()&&!n[i][e](t)||(t=n[i]);return t};t.max=function(){var e=[].slice.call(arguments,0);return i("isAfter",e)},t.min=function(){var e=[].slice.call(arguments,0);return i("isBefore",e)}}}));
|
48
CyLukTs/lukan/node_modules/dayjs/plugin/objectSupport.d.ts
generated
vendored
Normal file
48
CyLukTs/lukan/node_modules/dayjs/plugin/objectSupport.d.ts
generated
vendored
Normal file
@ -0,0 +1,48 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
set(argument: object): Dayjs
|
||||
add(argument: object): Dayjs
|
||||
subtract(argument: object): Dayjs
|
||||
}
|
||||
|
||||
interface ConfigTypeMap {
|
||||
objectSupport: {
|
||||
years?: number | string;
|
||||
year?: number | string;
|
||||
y?: number | string;
|
||||
|
||||
months?: number | string;
|
||||
month?: number | string;
|
||||
M?: number | string;
|
||||
|
||||
days?: number | string;
|
||||
day?: number | string;
|
||||
d?: number | string;
|
||||
|
||||
dates?: number | string;
|
||||
date?: number | string;
|
||||
D?: number | string;
|
||||
|
||||
hours?: number | string;
|
||||
hour?: number | string;
|
||||
h?: number | string;
|
||||
|
||||
minutes?: number | string;
|
||||
minute?: number | string;
|
||||
m?: number | string;
|
||||
|
||||
seconds?: number | string;
|
||||
second?: number | string;
|
||||
s?: number | string;
|
||||
|
||||
milliseconds?: number | string;
|
||||
millisecond?: number | string;
|
||||
ms?: number | string;
|
||||
}
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/objectSupport.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/objectSupport.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(t,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):(t="undefined"!=typeof globalThis?globalThis:t||self).dayjs_plugin_objectSupport=n()}(this,(function(){"use strict";return function(t,n,e){var i=n.prototype,r=function(t){var n,r=t.date,o=t.utc,a={};if(!((n=r)instanceof Date||n instanceof Array||i.$utils().u(n)||"Object"!==n.constructor.name)){if(!Object.keys(r).length)return new Date;var u=o?e.utc():e();Object.keys(r).forEach((function(t){var n,e;a[(n=t,e=i.$utils().p(n),"date"===e?"day":e)]=r[t]}));var c=a.day||(a.year||a.month>=0?1:u.date()),s=a.year||u.year(),d=a.month>=0?a.month:a.year||a.day?0:u.month(),f=a.hour||0,b=a.minute||0,h=a.second||0,y=a.millisecond||0;return o?new Date(Date.UTC(s,d,c,f,b,h,y)):new Date(s,d,c,f,b,h,y)}return r},o=i.parse;i.parse=function(t){t.date=r.bind(this)(t),o.bind(this)(t)};var a=i.set,u=i.add,c=i.subtract,s=function(t,n,e,i){void 0===i&&(i=1);var r=Object.keys(n),o=this;return r.forEach((function(e){o=t.bind(o)(n[e]*i,e)})),o};i.set=function(t,n){return n=void 0===n?t:n,"Object"===t.constructor.name?s.bind(this)((function(t,n){return a.bind(this)(n,t)}),n,t):a.bind(this)(t,n)},i.add=function(t,n){return"Object"===t.constructor.name?s.bind(this)(u,t,n):u.bind(this)(t,n)},i.subtract=function(t,n){return"Object"===t.constructor.name?s.bind(this)(u,t,n,-1):c.bind(this)(t,n)}}}));
|
44
CyLukTs/lukan/node_modules/dayjs/plugin/pluralGetSet.d.ts
generated
vendored
Normal file
44
CyLukTs/lukan/node_modules/dayjs/plugin/pluralGetSet.d.ts
generated
vendored
Normal file
@ -0,0 +1,44 @@
|
||||
import { PluginFunc, UnitType, ConfigType } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
years(): number
|
||||
|
||||
years(value: number): Dayjs
|
||||
|
||||
months(): number
|
||||
|
||||
months(value: number): Dayjs
|
||||
|
||||
dates(): number
|
||||
|
||||
dates(value: number): Dayjs
|
||||
|
||||
weeks(): number
|
||||
|
||||
weeks(value: number): Dayjs
|
||||
|
||||
days(): number
|
||||
|
||||
days(value: number): Dayjs
|
||||
|
||||
hours(): number
|
||||
|
||||
hours(value: number): Dayjs
|
||||
|
||||
minutes(): number
|
||||
|
||||
minutes(value: number): Dayjs
|
||||
|
||||
seconds(): number
|
||||
|
||||
seconds(value: number): Dayjs
|
||||
|
||||
milliseconds(): number
|
||||
|
||||
milliseconds(value: number): Dayjs
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/pluralGetSet.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/pluralGetSet.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,o){"object"==typeof exports&&"undefined"!=typeof module?module.exports=o():"function"==typeof define&&define.amd?define(o):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_pluralGetSet=o()}(this,(function(){"use strict";return function(e,o){var s=o.prototype;["milliseconds","seconds","minutes","hours","days","weeks","isoWeeks","months","quarters","years","dates"].forEach((function(e){s[e]=s[e.replace(/s$/,"")]}))}}));
|
4
CyLukTs/lukan/node_modules/dayjs/plugin/preParsePostFormat.d.ts
generated
vendored
Normal file
4
CyLukTs/lukan/node_modules/dayjs/plugin/preParsePostFormat.d.ts
generated
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/preParsePostFormat.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/preParsePostFormat.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).dayjs_plugin_preParsePostFormat=e()}(this,(function(){"use strict";return function(t,e){var o=e.prototype.parse;e.prototype.parse=function(t){if("string"==typeof t.date){var e=this.$locale();t.date=e&&e.preparse?e.preparse(t.date):t.date}return o.bind(this)(t)};var r=e.prototype.format;e.prototype.format=function(){for(var t=arguments.length,e=new Array(t),o=0;o<t;o++)e[o]=arguments[o];var a=r.call.apply(r,[this].concat(e)),p=this.$locale();return p&&p.postformat?p.postformat(a):a};var a=e.prototype.fromToBase;a&&(e.prototype.fromToBase=function(t,e,o,r){var p=this.$locale()||o.$locale();return a.call(this,t,e,o,r,p&&p.postformat)})}}));
|
26
CyLukTs/lukan/node_modules/dayjs/plugin/quarterOfYear.d.ts
generated
vendored
Normal file
26
CyLukTs/lukan/node_modules/dayjs/plugin/quarterOfYear.d.ts
generated
vendored
Normal file
@ -0,0 +1,26 @@
|
||||
import { PluginFunc, ConfigType, QUnitType, OpUnitType } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
quarter(): number
|
||||
|
||||
quarter(quarter: number): Dayjs
|
||||
|
||||
add(value: number, unit: QUnitType): Dayjs
|
||||
|
||||
subtract(value: number, unit: QUnitType): Dayjs
|
||||
|
||||
startOf(unit: QUnitType | OpUnitType): Dayjs
|
||||
|
||||
endOf(unit: QUnitType | OpUnitType): Dayjs
|
||||
|
||||
isSame(date?: ConfigType, unit?: QUnitType): boolean
|
||||
|
||||
isBefore(date?: ConfigType, unit?: QUnitType): boolean
|
||||
|
||||
isAfter(date?: ConfigType, unit?: QUnitType): boolean
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/quarterOfYear.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/quarterOfYear.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(t,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):(t="undefined"!=typeof globalThis?globalThis:t||self).dayjs_plugin_quarterOfYear=n()}(this,(function(){"use strict";var t="month",n="quarter";return function(e,i){var r=i.prototype;r.quarter=function(t){return this.$utils().u(t)?Math.ceil((this.month()+1)/3):this.month(this.month()%3+3*(t-1))};var s=r.add;r.add=function(e,i){return e=Number(e),this.$utils().p(i)===n?this.add(3*e,t):s.bind(this)(e,i)};var u=r.startOf;r.startOf=function(e,i){var r=this.$utils(),s=!!r.u(i)||i;if(r.p(e)===n){var o=this.quarter()-1;return s?this.month(3*o).startOf(t).startOf("day"):this.month(3*o+2).endOf(t).endOf("day")}return u.bind(this)(e,i)}}}));
|
24
CyLukTs/lukan/node_modules/dayjs/plugin/relativeTime.d.ts
generated
vendored
Normal file
24
CyLukTs/lukan/node_modules/dayjs/plugin/relativeTime.d.ts
generated
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
import { PluginFunc, ConfigType } from 'dayjs'
|
||||
|
||||
declare interface RelativeTimeThreshold {
|
||||
l: string
|
||||
r?: number
|
||||
d?: string
|
||||
}
|
||||
|
||||
declare interface RelativeTimeOptions {
|
||||
rounding?: (num: number) => number
|
||||
thresholds?: RelativeTimeThreshold[]
|
||||
}
|
||||
|
||||
declare const plugin: PluginFunc<RelativeTimeOptions>
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
fromNow(withoutSuffix?: boolean): string
|
||||
from(compared: ConfigType, withoutSuffix?: boolean): string
|
||||
toNow(withoutSuffix?: boolean): string
|
||||
to(compared: ConfigType, withoutSuffix?: boolean): string
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/relativeTime.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/relativeTime.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(r,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(r="undefined"!=typeof globalThis?globalThis:r||self).dayjs_plugin_relativeTime=e()}(this,(function(){"use strict";return function(r,e,t){r=r||{};var n=e.prototype,o={future:"in %s",past:"%s ago",s:"a few seconds",m:"a minute",mm:"%d minutes",h:"an hour",hh:"%d hours",d:"a day",dd:"%d days",M:"a month",MM:"%d months",y:"a year",yy:"%d years"};function i(r,e,t,o){return n.fromToBase(r,e,t,o)}t.en.relativeTime=o,n.fromToBase=function(e,n,i,d,u){for(var f,a,s,l=i.$locale().relativeTime||o,h=r.thresholds||[{l:"s",r:44,d:"second"},{l:"m",r:89},{l:"mm",r:44,d:"minute"},{l:"h",r:89},{l:"hh",r:21,d:"hour"},{l:"d",r:35},{l:"dd",r:25,d:"day"},{l:"M",r:45},{l:"MM",r:10,d:"month"},{l:"y",r:17},{l:"yy",d:"year"}],m=h.length,c=0;c<m;c+=1){var y=h[c];y.d&&(f=d?t(e).diff(i,y.d,!0):i.diff(e,y.d,!0));var p=(r.rounding||Math.round)(Math.abs(f));if(s=f>0,p<=y.r||!y.r){p<=1&&c>0&&(y=h[c-1]);var v=l[y.l];u&&(p=u(""+p)),a="string"==typeof v?v.replace("%d",p):v(p,n,y.l,s);break}}if(n)return a;var M=s?l.future:l.past;return"function"==typeof M?M(a):M.replace("%s",a)},n.to=function(r,e){return i(r,e,this,!0)},n.from=function(r,e){return i(r,e,this)};var d=function(r){return r.$u?t.utc():t()};n.toNow=function(r){return this.to(d(this),r)},n.fromNow=function(r){return this.from(d(this),r)}}}));
|
20
CyLukTs/lukan/node_modules/dayjs/plugin/timezone.d.ts
generated
vendored
Normal file
20
CyLukTs/lukan/node_modules/dayjs/plugin/timezone.d.ts
generated
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
import { PluginFunc, ConfigType } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
tz(timezone?: string, keepLocalTime?: boolean): Dayjs
|
||||
offsetName(type?: 'short' | 'long'): string | undefined
|
||||
}
|
||||
|
||||
interface DayjsTimezone {
|
||||
(date?: ConfigType, timezone?: string): Dayjs
|
||||
(date: ConfigType, format: string, timezone?: string): Dayjs
|
||||
guess(): string
|
||||
setDefault(timezone?: string): void
|
||||
}
|
||||
|
||||
const tz: DayjsTimezone
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/timezone.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/timezone.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).dayjs_plugin_timezone=e()}(this,(function(){"use strict";var t={year:0,month:1,day:2,hour:3,minute:4,second:5},e={};return function(n,i,o){var r,a=function(t,n,i){void 0===i&&(i={});var o=new Date(t),r=function(t,n){void 0===n&&(n={});var i=n.timeZoneName||"short",o=t+"|"+i,r=e[o];return r||(r=new Intl.DateTimeFormat("en-US",{hour12:!1,timeZone:t,year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit",timeZoneName:i}),e[o]=r),r}(n,i);return r.formatToParts(o)},u=function(e,n){for(var i=a(e,n),r=[],u=0;u<i.length;u+=1){var f=i[u],s=f.type,m=f.value,c=t[s];c>=0&&(r[c]=parseInt(m,10))}var d=r[3],l=24===d?0:d,v=r[0]+"-"+r[1]+"-"+r[2]+" "+l+":"+r[4]+":"+r[5]+":000",h=+e;return(o.utc(v).valueOf()-(h-=h%1e3))/6e4},f=i.prototype;f.tz=function(t,e){void 0===t&&(t=r);var n=this.utcOffset(),i=this.toDate(),a=i.toLocaleString("en-US",{timeZone:t}),u=Math.round((i-new Date(a))/1e3/60),f=o(a).$set("millisecond",this.$ms).utcOffset(15*-Math.round(i.getTimezoneOffset()/15)-u,!0);if(e){var s=f.utcOffset();f=f.add(n-s,"minute")}return f.$x.$timezone=t,f},f.offsetName=function(t){var e=this.$x.$timezone||o.tz.guess(),n=a(this.valueOf(),e,{timeZoneName:t}).find((function(t){return"timezonename"===t.type.toLowerCase()}));return n&&n.value};var s=f.startOf;f.startOf=function(t,e){if(!this.$x||!this.$x.$timezone)return s.call(this,t,e);var n=o(this.format("YYYY-MM-DD HH:mm:ss:SSS"));return s.call(n,t,e).tz(this.$x.$timezone,!0)},o.tz=function(t,e,n){var i=n&&e,a=n||e||r,f=u(+o(),a);if("string"!=typeof t)return o(t).tz(a);var s=function(t,e,n){var i=t-60*e*1e3,o=u(i,n);if(e===o)return[i,e];var r=u(i-=60*(o-e)*1e3,n);return o===r?[i,o]:[t-60*Math.min(o,r)*1e3,Math.max(o,r)]}(o.utc(t,i).valueOf(),f,a),m=s[0],c=s[1],d=o(m).utcOffset(c);return d.$x.$timezone=a,d},o.tz.guess=function(){return Intl.DateTimeFormat().resolvedOptions().timeZone},o.tz.setDefault=function(t){r=t}}}));
|
10
CyLukTs/lukan/node_modules/dayjs/plugin/toArray.d.ts
generated
vendored
Normal file
10
CyLukTs/lukan/node_modules/dayjs/plugin/toArray.d.ts
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
toArray(): number[]
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/toArray.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/toArray.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).dayjs_plugin_toArray=e()}(this,(function(){"use strict";return function(t,e){e.prototype.toArray=function(){return[this.$y,this.$M,this.$D,this.$H,this.$m,this.$s,this.$ms]}}}));
|
20
CyLukTs/lukan/node_modules/dayjs/plugin/toObject.d.ts
generated
vendored
Normal file
20
CyLukTs/lukan/node_modules/dayjs/plugin/toObject.d.ts
generated
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
interface DayjsObject {
|
||||
years: number
|
||||
months: number
|
||||
date: number
|
||||
hours: number
|
||||
minutes: number
|
||||
seconds: number
|
||||
milliseconds: number
|
||||
}
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
toObject(): DayjsObject
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/toObject.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/toObject.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).dayjs_plugin_toObject=e()}(this,(function(){"use strict";return function(t,e){e.prototype.toObject=function(){return{years:this.$y,months:this.$M,date:this.$D,hours:this.$H,minutes:this.$m,seconds:this.$s,milliseconds:this.$ms}}}}));
|
8
CyLukTs/lukan/node_modules/dayjs/plugin/updateLocale.d.ts
generated
vendored
Normal file
8
CyLukTs/lukan/node_modules/dayjs/plugin/updateLocale.d.ts
generated
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
export function updateLocale(localeName: string, customConfig: Record<string, unknown>): Record<string, unknown>
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/updateLocale.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/updateLocale.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_updateLocale=n()}(this,(function(){"use strict";return function(e,n,t){t.updateLocale=function(e,n){var o=t.Ls[e];if(o)return(n?Object.keys(n):[]).forEach((function(e){o[e]=n[e]})),o}}}));
|
19
CyLukTs/lukan/node_modules/dayjs/plugin/utc.d.ts
generated
vendored
Normal file
19
CyLukTs/lukan/node_modules/dayjs/plugin/utc.d.ts
generated
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
import { PluginFunc, ConfigType } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
|
||||
utc(keepLocalTime?: boolean): Dayjs
|
||||
|
||||
local(): Dayjs
|
||||
|
||||
isUTC(): boolean
|
||||
|
||||
utcOffset(offset: number | string, keepLocalTime?: boolean): Dayjs
|
||||
}
|
||||
|
||||
export function utc(config?: ConfigType, format?: string, strict?: boolean): Dayjs
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/utc.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/utc.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(t,i){"object"==typeof exports&&"undefined"!=typeof module?module.exports=i():"function"==typeof define&&define.amd?define(i):(t="undefined"!=typeof globalThis?globalThis:t||self).dayjs_plugin_utc=i()}(this,(function(){"use strict";var t="minute",i=/[+-]\d\d(?::?\d\d)?/g,e=/([+-]|\d\d)/g;return function(s,f,n){var u=f.prototype;n.utc=function(t){var i={date:t,utc:!0,args:arguments};return new f(i)},u.utc=function(i){var e=n(this.toDate(),{locale:this.$L,utc:!0});return i?e.add(this.utcOffset(),t):e},u.local=function(){return n(this.toDate(),{locale:this.$L,utc:!1})};var o=u.parse;u.parse=function(t){t.utc&&(this.$u=!0),this.$utils().u(t.$offset)||(this.$offset=t.$offset),o.call(this,t)};var r=u.init;u.init=function(){if(this.$u){var t=this.$d;this.$y=t.getUTCFullYear(),this.$M=t.getUTCMonth(),this.$D=t.getUTCDate(),this.$W=t.getUTCDay(),this.$H=t.getUTCHours(),this.$m=t.getUTCMinutes(),this.$s=t.getUTCSeconds(),this.$ms=t.getUTCMilliseconds()}else r.call(this)};var a=u.utcOffset;u.utcOffset=function(s,f){var n=this.$utils().u;if(n(s))return this.$u?0:n(this.$offset)?a.call(this):this.$offset;if("string"==typeof s&&(s=function(t){void 0===t&&(t="");var s=t.match(i);if(!s)return null;var f=(""+s[0]).match(e)||["-",0,0],n=f[0],u=60*+f[1]+ +f[2];return 0===u?0:"+"===n?u:-u}(s),null===s))return this;var u=Math.abs(s)<=16?60*s:s,o=this;if(f)return o.$offset=u,o.$u=0===s,o;if(0!==s){var r=this.$u?this.toDate().getTimezoneOffset():-1*this.utcOffset();(o=this.local().add(u+r,t)).$offset=u,o.$x.$localOffset=r}else o=this.utc();return o};var h=u.format;u.format=function(t){var i=t||(this.$u?"YYYY-MM-DDTHH:mm:ss[Z]":"");return h.call(this,i)},u.valueOf=function(){var t=this.$utils().u(this.$offset)?0:this.$offset+(this.$x.$localOffset||this.$d.getTimezoneOffset());return this.$d.valueOf()-6e4*t},u.isUTC=function(){return!!this.$u},u.toISOString=function(){return this.toDate().toISOString()},u.toString=function(){return this.toDate().toUTCString()};var l=u.toDate;u.toDate=function(t){return"s"===t&&this.$offset?n(this.format("YYYY-MM-DD HH:mm:ss:SSS")).toDate():l.call(this)};var c=u.diff;u.diff=function(t,i,e){if(t&&this.$u===t.$u)return c.call(this,t,i,e);var s=this.local(),f=n(t).local();return c.call(s,f,i,e)}}}));
|
12
CyLukTs/lukan/node_modules/dayjs/plugin/weekOfYear.d.ts
generated
vendored
Normal file
12
CyLukTs/lukan/node_modules/dayjs/plugin/weekOfYear.d.ts
generated
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
week(): number
|
||||
|
||||
week(value : number): Dayjs
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/weekOfYear.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/weekOfYear.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_weekOfYear=t()}(this,(function(){"use strict";var e="week",t="year";return function(i,n,r){var f=n.prototype;f.week=function(i){if(void 0===i&&(i=null),null!==i)return this.add(7*(i-this.week()),"day");var n=this.$locale().yearStart||1;if(11===this.month()&&this.date()>25){var f=r(this).startOf(t).add(1,t).date(n),s=r(this).endOf(e);if(f.isBefore(s))return 1}var a=r(this).startOf(t).date(n).startOf(e).subtract(1,"millisecond"),o=this.diff(a,e,!0);return o<0?r(this).startOf("week").week():Math.ceil(o)},f.weeks=function(e){return void 0===e&&(e=null),this.week(e)}}}));
|
10
CyLukTs/lukan/node_modules/dayjs/plugin/weekYear.d.ts
generated
vendored
Normal file
10
CyLukTs/lukan/node_modules/dayjs/plugin/weekYear.d.ts
generated
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
weekYear(): number
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/weekYear.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/weekYear.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_weekYear=t()}(this,(function(){"use strict";return function(e,t){t.prototype.weekYear=function(){var e=this.month(),t=this.week(),n=this.year();return 1===t&&11===e?n+1:0===e&&t>=52?n-1:n}}}));
|
12
CyLukTs/lukan/node_modules/dayjs/plugin/weekday.d.ts
generated
vendored
Normal file
12
CyLukTs/lukan/node_modules/dayjs/plugin/weekday.d.ts
generated
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
import { PluginFunc } from 'dayjs'
|
||||
|
||||
declare const plugin: PluginFunc
|
||||
export = plugin
|
||||
|
||||
declare module 'dayjs' {
|
||||
interface Dayjs {
|
||||
weekday(): number
|
||||
|
||||
weekday(value: number): Dayjs
|
||||
}
|
||||
}
|
1
CyLukTs/lukan/node_modules/dayjs/plugin/weekday.js
generated
vendored
Normal file
1
CyLukTs/lukan/node_modules/dayjs/plugin/weekday.js
generated
vendored
Normal file
@ -0,0 +1 @@
|
||||
!function(e,t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define(t):(e="undefined"!=typeof globalThis?globalThis:e||self).dayjs_plugin_weekday=t()}(this,(function(){"use strict";return function(e,t){t.prototype.weekday=function(e){var t=this.$locale().weekStart||0,i=this.$W,n=(i<t?i+7:i)-t;return this.$utils().u(e)?n:this.subtract(n,"day").add(e,"day")}}}));
|
Reference in New Issue
Block a user