@stacksjs/types 0.64.6 → 0.65.0
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/ai.d.ts +15 -0
- package/dist/analytics.d.ts +15 -0
- package/dist/api.d.ts +67 -0
- package/dist/app.d.ts +135 -0
- package/dist/auto-imports.d.ts +1 -0
- package/dist/binary.d.ts +11 -0
- package/dist/build.d.ts +2 -0
- package/dist/cache.d.ts +62 -0
- package/dist/cdn.d.ts +16 -0
- package/dist/chat.d.ts +3 -0
- package/dist/cli.d.ts +246 -0
- package/dist/cloud.d.ts +69 -0
- package/dist/components.d.ts +60 -0
- package/dist/configure.d.ts +12 -0
- package/dist/cron-jobs.d.ts +43 -0
- package/dist/database.d.ts +47 -0
- package/dist/dependencies.d.ts +62 -0
- package/dist/deploy.d.ts +16 -0
- package/dist/dns.d.ts +175 -0
- package/dist/docs.d.ts +22 -0
- package/dist/email.d.ts +11 -0
- package/dist/env.d.ts +0 -0
- package/dist/errors.d.ts +70 -0
- package/dist/events.d.ts +30 -0
- package/dist/exit-code.d.ts +10 -0
- package/dist/file-systems.d.ts +60 -0
- package/dist/git.d.ts +128 -0
- package/dist/hashing.d.ts +100 -0
- package/dist/helpers.d.ts +1 -0
- package/dist/i18n.d.ts +19 -0
- package/dist/index.d.ts +61 -0
- package/dist/index.js +3 -2
- package/dist/index.js.map +11 -10
- package/dist/inspect.d.ts +9 -0
- package/dist/layout.d.ts +0 -0
- package/dist/library.d.ts +142 -0
- package/dist/logging.d.ts +28 -0
- package/dist/manifest.d.ts +9 -0
- package/dist/model-names.d.ts +1 -0
- package/dist/model.d.ts +144 -0
- package/dist/native.d.ts +0 -0
- package/dist/notifications.d.ts +106 -0
- package/dist/pages.d.ts +10 -0
- package/dist/payments.d.ts +60 -0
- package/dist/ports.d.ts +20 -0
- package/dist/promise.d.ts +1 -0
- package/dist/push.d.ts +31 -0
- package/dist/pwa.d.ts +7 -0
- package/dist/queue.d.ts +34 -0
- package/dist/reactivity.d.ts +1 -0
- package/dist/request.d.ts +30 -0
- package/dist/router.d.ts +55 -0
- package/dist/scheduler.d.ts +1 -0
- package/dist/search-engine.d.ts +114 -0
- package/dist/security.d.ts +18 -0
- package/dist/server.d.ts +6 -0
- package/dist/services.d.ts +29 -0
- package/dist/settings-config.d.ts +9 -0
- package/dist/sms.d.ts +0 -0
- package/dist/ssg.d.ts +2 -0
- package/dist/stacks.d.ts +204 -0
- package/dist/storage.d.ts +12 -0
- package/dist/tables.d.ts +52 -0
- package/dist/team.d.ts +8 -0
- package/dist/ui.d.ts +165 -0
- package/dist/utils.d.ts +30 -0
- package/package.json +19 -19
- package/src/api.ts +6 -6
- package/src/app.ts +1 -1
- package/src/chat.ts +1 -1
- package/src/cli.ts +7 -3
- package/src/cloud.ts +1 -1
- package/src/cron-jobs.ts +1 -0
- package/src/deploy.ts +1 -0
- package/src/errors.ts +50 -51
- package/src/git.ts +1 -1
- package/src/helpers.ts +3 -2
- package/src/index.ts +8 -7
- package/src/model-names.ts +1 -10
- package/src/model.ts +35 -19
- package/src/notifications.ts +1 -5
- package/src/request.ts +16 -15
- package/src/router.ts +1 -0
- package/src/search-engine.ts +3 -3
- package/src/server.ts +16 -0
- package/src/settings-config.ts +2 -2
- package/src/stacks.ts +0 -1
package/dist/git.d.ts
ADDED
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* **Git Options**
|
|
3
|
+
*
|
|
4
|
+
* This configuration defines all of your git options. Because Stacks is fully-typed, you may
|
|
5
|
+
* hover any of the options below and the definitions will be provided. In case you
|
|
6
|
+
* have any questions, feel free to reach out via Discord or GitHub Discussions.
|
|
7
|
+
*/
|
|
8
|
+
export interface GitOptions {
|
|
9
|
+
/**
|
|
10
|
+
* **Git Hooks**
|
|
11
|
+
*
|
|
12
|
+
* The git hooks to use.
|
|
13
|
+
*
|
|
14
|
+
* @see https://git-scm.com/docs/githooks
|
|
15
|
+
* @example
|
|
16
|
+
* ```ts
|
|
17
|
+
* git: {
|
|
18
|
+
* hooks: {
|
|
19
|
+
* 'pre-commit': 'lint-staged',
|
|
20
|
+
* }
|
|
21
|
+
* }
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
hooks: GitHooks;
|
|
25
|
+
/**
|
|
26
|
+
* **Git Commit Scopes**
|
|
27
|
+
*
|
|
28
|
+
* The git commit scopes to use.
|
|
29
|
+
*
|
|
30
|
+
* @see https://stacksjs.org/docs/git/scopes
|
|
31
|
+
* @example
|
|
32
|
+
* git: [
|
|
33
|
+
* scopes: [
|
|
34
|
+
* '', 'ci', 'deps', 'dx', 'release', 'readme', 'test', 'actions', 'build', 'cli',
|
|
35
|
+
* 'config', 'examples', 'functions', 'modules', 'views', 'router', 'scripts',
|
|
36
|
+
* 'ui', 'utils', 'arrays', 'collections', 'fs', 'objects', 'strings',
|
|
37
|
+
* ]
|
|
38
|
+
* ]
|
|
39
|
+
*/
|
|
40
|
+
scopes: string[];
|
|
41
|
+
/**
|
|
42
|
+
* **Git Commit Types**
|
|
43
|
+
*
|
|
44
|
+
* The git commit types to use.
|
|
45
|
+
*
|
|
46
|
+
* @default array
|
|
47
|
+
* @see https://stacksjs.org/docs/git/types
|
|
48
|
+
* @see https://www.conventionalcommits.org/en/v1.0.0/
|
|
49
|
+
* @example
|
|
50
|
+
* ```ts
|
|
51
|
+
* git: [
|
|
52
|
+
* types: [
|
|
53
|
+
* 'build', 'chore', 'ci', 'docs', 'feat', 'fix', 'perf', 'refactor', 'revert', 'style', 'test',
|
|
54
|
+
* ]
|
|
55
|
+
* ]
|
|
56
|
+
* ```
|
|
57
|
+
*/
|
|
58
|
+
types: {
|
|
59
|
+
value: string;
|
|
60
|
+
name: string;
|
|
61
|
+
emoji: string;
|
|
62
|
+
}[];
|
|
63
|
+
/**
|
|
64
|
+
* **Messages—Options**
|
|
65
|
+
*
|
|
66
|
+
* The git messages/prompts to use.
|
|
67
|
+
*
|
|
68
|
+
* @default object
|
|
69
|
+
* @example
|
|
70
|
+
* ```ts
|
|
71
|
+
* messages: {
|
|
72
|
+
* type: 'Select the type of change that you’re committing:',
|
|
73
|
+
* scope: 'Denote the SCOPE of this change:',
|
|
74
|
+
* subject: 'Write a SHORT, IMPERATIVE tense description of the change:\n',
|
|
75
|
+
* body: 'Provide a LONGER description of the change (optional). Use "|" to break new line:\n',
|
|
76
|
+
* breaking: 'List any BREAKING CHANGES (optional):\n',
|
|
77
|
+
* footer: 'List any ISSUES CLOSED by this change (optional). E.g.: #31, #34:\n',
|
|
78
|
+
* confirmCommit: 'Are you sure you want to proceed with the commit above?',
|
|
79
|
+
* }
|
|
80
|
+
* ```
|
|
81
|
+
* @see https://stacksjs.org/docs/git/messages
|
|
82
|
+
*/
|
|
83
|
+
messages: {
|
|
84
|
+
type: string;
|
|
85
|
+
scope: string;
|
|
86
|
+
customScope: string;
|
|
87
|
+
subject: string;
|
|
88
|
+
body: string;
|
|
89
|
+
breaking: string;
|
|
90
|
+
footerPrefixesSelect: string;
|
|
91
|
+
customFooterPrefixes: string;
|
|
92
|
+
footer: string;
|
|
93
|
+
confirmCommit: string;
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
interface Hooks {
|
|
97
|
+
"applypatch-msg"?: string;
|
|
98
|
+
"pre-applypatch"?: string;
|
|
99
|
+
"post-applypatch"?: string;
|
|
100
|
+
"pre-commit"?: string;
|
|
101
|
+
"pre-merge-commit"?: string;
|
|
102
|
+
"prepare-commit-msg"?: string;
|
|
103
|
+
"commit-msg"?: string;
|
|
104
|
+
"post-commit"?: string;
|
|
105
|
+
"pre-rebase"?: string;
|
|
106
|
+
"post-checkout"?: string;
|
|
107
|
+
"post-merge"?: string;
|
|
108
|
+
"pre-push"?: string;
|
|
109
|
+
"pre-receive"?: string;
|
|
110
|
+
"update"?: string;
|
|
111
|
+
"proc-receive"?: string;
|
|
112
|
+
"post-receive"?: string;
|
|
113
|
+
"post-update"?: string;
|
|
114
|
+
"reference-transaction"?: string;
|
|
115
|
+
"push-to-checkout"?: string;
|
|
116
|
+
"pre-auto-gc"?: string;
|
|
117
|
+
"post-rewrite"?: string;
|
|
118
|
+
"sendemail-validate"?: string;
|
|
119
|
+
"fsmonitor-watchman"?: string;
|
|
120
|
+
"p4-changelist"?: string;
|
|
121
|
+
"p4-prepare-changelist"?: string;
|
|
122
|
+
"p4-post-changelist"?: string;
|
|
123
|
+
"p4-pre-submit"?: string;
|
|
124
|
+
"post-index-change"?: string;
|
|
125
|
+
}
|
|
126
|
+
export type GitConfig = Partial<GitOptions>;
|
|
127
|
+
export interface GitHooks extends Hooks {}
|
|
128
|
+
export {};
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The Stacks runtime provides secure Bcrypt & Argon2 hashing for storing user passwords.
|
|
3
|
+
* If you are using one of the Laravel application starter kits, Bcrypt will be used for
|
|
4
|
+
* registration and authentication by default.
|
|
5
|
+
*
|
|
6
|
+
* Bcrypt is a great choice for hashing passwords because its "work factor" is adjustable, which
|
|
7
|
+
* means that the time it takes to generate a hash can be increased as hardware power increases.
|
|
8
|
+
* When hashing passwords, slow is good. The longer an algorithm takes to hash a password, the
|
|
9
|
+
* longer it takes malicious users to generate "rainbow tables" of all possible string hash
|
|
10
|
+
* values that may be used in brute force attacks against applications.
|
|
11
|
+
*
|
|
12
|
+
* @see https://stacksjs.org/docs/hashing
|
|
13
|
+
*/
|
|
14
|
+
export interface HashingOptions {
|
|
15
|
+
/**
|
|
16
|
+
* **Hashing Driver**
|
|
17
|
+
*
|
|
18
|
+
* This option controls the default hash driver that will be used to hash
|
|
19
|
+
* passwords for your application. By default, the bcrypt algorithm is
|
|
20
|
+
* used; however, you remain free to modify this option if you wish.
|
|
21
|
+
*
|
|
22
|
+
* @see https://stacksjs.org/docs/hashing
|
|
23
|
+
*/
|
|
24
|
+
driver: "argon2" | "argon2id" | "argon2i" | "argon2d" | "bcrypt";
|
|
25
|
+
/**
|
|
26
|
+
* **Bcrypt Option**
|
|
27
|
+
*
|
|
28
|
+
* Here you may specify the configuration options that should be used when
|
|
29
|
+
* passwords are hashed using the Bcrypt algorithm. This will allow you
|
|
30
|
+
* to control the amount of time it takes to hash the given password.
|
|
31
|
+
*
|
|
32
|
+
* @see https://stacksjs.org/docs/hashing
|
|
33
|
+
*/
|
|
34
|
+
bcrypt?: BcryptOptions;
|
|
35
|
+
/**
|
|
36
|
+
* **Argon Options**
|
|
37
|
+
*
|
|
38
|
+
* Here you may specify the configuration options that should be used when
|
|
39
|
+
* passwords are hashed using the Argon algorithm. These will allow you
|
|
40
|
+
* to control the amount of time it takes to hash the given password.
|
|
41
|
+
*
|
|
42
|
+
* @see https://stacksjs.org/docs/hashing
|
|
43
|
+
*/
|
|
44
|
+
argon2?: ArgonOptions;
|
|
45
|
+
}
|
|
46
|
+
export type HashingConfig = Partial<HashingOptions>;
|
|
47
|
+
/**
|
|
48
|
+
* **Bcrypt Options**
|
|
49
|
+
*
|
|
50
|
+
* Here you may specify the configuration options that should be used when
|
|
51
|
+
* passwords are hashed using the Bcrypt algorithm. This will allow you
|
|
52
|
+
* to control the amount of time it takes to hash the given password.
|
|
53
|
+
*
|
|
54
|
+
* @see https://stacksjs.org/docs/hashing
|
|
55
|
+
*/
|
|
56
|
+
export interface BcryptOptions {
|
|
57
|
+
/**
|
|
58
|
+
* Bcrypt salt rounds.
|
|
59
|
+
*
|
|
60
|
+
* @default number 10
|
|
61
|
+
* @see https://stacksjs.org/docs/hashing
|
|
62
|
+
*/
|
|
63
|
+
rounds: number;
|
|
64
|
+
/**
|
|
65
|
+
* Bcrypt cost. This is a number between 4-31.
|
|
66
|
+
* @default number 4
|
|
67
|
+
* @see https://stacksjs.org/docs/hashing
|
|
68
|
+
*/
|
|
69
|
+
cost: number;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* **Argon Options**
|
|
73
|
+
*
|
|
74
|
+
* Here you may specify the configuration options that should be used when
|
|
75
|
+
* passwords are hashed using the Argon algorithm. These will allow you
|
|
76
|
+
* to control the amount of time it takes to hash the given password.
|
|
77
|
+
*
|
|
78
|
+
* @see https://stacksjs.org/docs/hashing
|
|
79
|
+
*/
|
|
80
|
+
export interface ArgonOptions {
|
|
81
|
+
/**
|
|
82
|
+
* **Argon Memory**
|
|
83
|
+
*
|
|
84
|
+
* Amount of memory (in kibibytes) to use.
|
|
85
|
+
*
|
|
86
|
+
* @default number 65536
|
|
87
|
+
* @see https://stacksjs.org/docs/hashing
|
|
88
|
+
*/
|
|
89
|
+
memory?: number;
|
|
90
|
+
/**
|
|
91
|
+
* **Argon time**
|
|
92
|
+
*
|
|
93
|
+
* Execution time.
|
|
94
|
+
*
|
|
95
|
+
* @default number 1
|
|
96
|
+
* @see https://stacksjs.org/docs/hashing
|
|
97
|
+
*/
|
|
98
|
+
time?: number;
|
|
99
|
+
}
|
|
100
|
+
export type HashAlgorithm = "md4" | "md5" | "sha1" | "sha256" | "sha384" | "sha512" | "ripemd128" | "ripemd160" | "tiger128" | "tiger160" | "tiger192" | "crc32" | "crc32b";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function getTypeName(v: any): string;
|
package/dist/i18n.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
interface VitePluginVueI18nOptions {
|
|
2
|
+
forceStringify?: boolean;
|
|
3
|
+
runtimeOnly?: boolean;
|
|
4
|
+
compositionOnly?: boolean;
|
|
5
|
+
fullInstall?: boolean;
|
|
6
|
+
include?: string | string[];
|
|
7
|
+
defaultSFCLang?: "json" | "json5" | "yml" | "yaml";
|
|
8
|
+
globalSFCScope?: boolean;
|
|
9
|
+
useVueI18nImportName?: boolean;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* **Internationalization Options**
|
|
13
|
+
*
|
|
14
|
+
* The i18n option.
|
|
15
|
+
*
|
|
16
|
+
* @see https://github.com/intlify/bundle-tools/blob/main/packages/vite-plugin-vue-i18n/src/options.ts
|
|
17
|
+
*/
|
|
18
|
+
export type i18nOptions = VitePluginVueI18nOptions;
|
|
19
|
+
export {};
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
export * from "./ai";
|
|
2
|
+
export * from "./analytics";
|
|
3
|
+
export * from "./api";
|
|
4
|
+
export * from "./app";
|
|
5
|
+
export * from "./auto-imports";
|
|
6
|
+
export * from "./binary";
|
|
7
|
+
export * from "./build";
|
|
8
|
+
export * from "./cache";
|
|
9
|
+
export * from "./cdn";
|
|
10
|
+
export * from "./chat";
|
|
11
|
+
export * from "./cli";
|
|
12
|
+
export * from "./cloud";
|
|
13
|
+
export * from "./components";
|
|
14
|
+
export * from "./configure";
|
|
15
|
+
export * from "./cron-jobs";
|
|
16
|
+
export * from "./database";
|
|
17
|
+
export * from "./dependencies";
|
|
18
|
+
export * from "./deploy";
|
|
19
|
+
export * from "./dns";
|
|
20
|
+
export * from "./docs";
|
|
21
|
+
export * from "./email";
|
|
22
|
+
export * from "./env";
|
|
23
|
+
export * from "./errors";
|
|
24
|
+
export * from "./events";
|
|
25
|
+
export * from "./exit-code";
|
|
26
|
+
export * from "./file-systems";
|
|
27
|
+
export * from "./git";
|
|
28
|
+
export * from "./hashing";
|
|
29
|
+
export * from "./helpers";
|
|
30
|
+
export * from "./i18n";
|
|
31
|
+
export * from "./inspect";
|
|
32
|
+
export * from "./library";
|
|
33
|
+
export * from "./logging";
|
|
34
|
+
export * from "./manifest";
|
|
35
|
+
export * from "./model";
|
|
36
|
+
export * from "./model-names";
|
|
37
|
+
export * from "./notifications";
|
|
38
|
+
export * from "./pages";
|
|
39
|
+
export * from "./payments";
|
|
40
|
+
export * from "./ports";
|
|
41
|
+
export * from "./promise";
|
|
42
|
+
export * from "./push";
|
|
43
|
+
export * from "./pwa";
|
|
44
|
+
export * from "./queue";
|
|
45
|
+
export * from "./reactivity";
|
|
46
|
+
export * from "./request";
|
|
47
|
+
export * from "./router";
|
|
48
|
+
export * from "./scheduler";
|
|
49
|
+
export * from "./search-engine";
|
|
50
|
+
export * from "./security";
|
|
51
|
+
export * from "./server";
|
|
52
|
+
export * from "./services";
|
|
53
|
+
export * from "./settings-config.ts";
|
|
54
|
+
export * from "./sms";
|
|
55
|
+
export * from "./ssg";
|
|
56
|
+
export * from "./stacks";
|
|
57
|
+
export * from "./storage";
|
|
58
|
+
export * from "./tables";
|
|
59
|
+
export * from "./team";
|
|
60
|
+
export * from "./ui";
|
|
61
|
+
export * from "./utils";
|
package/dist/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
var F=Object.create;var{getPrototypeOf:v,defineProperty:K,getOwnPropertyNames:L}=Object;var D=Object.prototype.hasOwnProperty;var Z=(t,i,e)=>{e=t!=null?F(v(t)):{};const a=i||!t||!t.__esModule?K(e,"default",{value:t,enumerable:!0}):e;for(let m of L(t))if(!D.call(a,m))K(a,m,{get:()=>t[m],enumerable:!0});return a};var H=(t,i)=>()=>(i||t((i={exports:{}}).exports,i),i.exports);var X=H((Q,Y)=>{(function(t,i,e){if(typeof Q==="object")Y.exports=e(),Y.exports.default=e();else if(typeof define==="function"&&define.amd)define(e);else i[t]=e()})("slugify",Q,function(){var t=JSON.parse(`{"$":"dollar","%":"percent","&":"and","<":"less",">":"greater","|":"or","\xA2":"cent","\xA3":"pound","\xA4":"currency","\xA5":"yen","\xA9":"(c)","\xAA":"a","\xAE":"(r)","\xBA":"o","\xC0":"A","\xC1":"A","\xC2":"A","\xC3":"A","\xC4":"A","\xC5":"A","\xC6":"AE","\xC7":"C","\xC8":"E","\xC9":"E","\xCA":"E","\xCB":"E","\xCC":"I","\xCD":"I","\xCE":"I","\xCF":"I","\xD0":"D","\xD1":"N","\xD2":"O","\xD3":"O","\xD4":"O","\xD5":"O","\xD6":"O","\xD8":"O","\xD9":"U","\xDA":"U","\xDB":"U","\xDC":"U","\xDD":"Y","\xDE":"TH","\xDF":"ss","\xE0":"a","\xE1":"a","\xE2":"a","\xE3":"a","\xE4":"a","\xE5":"a","\xE6":"ae","\xE7":"c","\xE8":"e","\xE9":"e","\xEA":"e","\xEB":"e","\xEC":"i","\xED":"i","\xEE":"i","\xEF":"i","\xF0":"d","\xF1":"n","\xF2":"o","\xF3":"o","\xF4":"o","\xF5":"o","\xF6":"o","\xF8":"o","\xF9":"u","\xFA":"u","\xFB":"u","\xFC":"u","\xFD":"y","\xFE":"th","\xFF":"y","\u0100":"A","\u0101":"a","\u0102":"A","\u0103":"a","\u0104":"A","\u0105":"a","\u0106":"C","\u0107":"c","\u010C":"C","\u010D":"c","\u010E":"D","\u010F":"d","\u0110":"DJ","\u0111":"dj","\u0112":"E","\u0113":"e","\u0116":"E","\u0117":"e","\u0118":"e","\u0119":"e","\u011A":"E","\u011B":"e","\u011E":"G","\u011F":"g","\u0122":"G","\u0123":"g","\u0128":"I","\u0129":"i","\u012A":"i","\u012B":"i","\u012E":"I","\u012F":"i","\u0130":"I","\u0131":"i","\u0136":"k","\u0137":"k","\u013B":"L","\u013C":"l","\u013D":"L","\u013E":"l","\u0141":"L","\u0142":"l","\u0143":"N","\u0144":"n","\u0145":"N","\u0146":"n","\u0147":"N","\u0148":"n","\u014C":"O","\u014D":"o","\u0150":"O","\u0151":"o","\u0152":"OE","\u0153":"oe","\u0154":"R","\u0155":"r","\u0158":"R","\u0159":"r","\u015A":"S","\u015B":"s","\u015E":"S","\u015F":"s","\u0160":"S","\u0161":"s","\u0162":"T","\u0163":"t","\u0164":"T","\u0165":"t","\u0168":"U","\u0169":"u","\u016A":"u","\u016B":"u","\u016E":"U","\u016F":"u","\u0170":"U","\u0171":"u","\u0172":"U","\u0173":"u","\u0174":"W","\u0175":"w","\u0176":"Y","\u0177":"y","\u0178":"Y","\u0179":"Z","\u017A":"z","\u017B":"Z","\u017C":"z","\u017D":"Z","\u017E":"z","\u018F":"E","\u0192":"f","\u01A0":"O","\u01A1":"o","\u01AF":"U","\u01B0":"u","\u01C8":"LJ","\u01C9":"lj","\u01CB":"NJ","\u01CC":"nj","\u0218":"S","\u0219":"s","\u021A":"T","\u021B":"t","\u0259":"e","\u02DA":"o","\u0386":"A","\u0388":"E","\u0389":"H","\u038A":"I","\u038C":"O","\u038E":"Y","\u038F":"W","\u0390":"i","\u0391":"A","\u0392":"B","\u0393":"G","\u0394":"D","\u0395":"E","\u0396":"Z","\u0397":"H","\u0398":"8","\u0399":"I","\u039A":"K","\u039B":"L","\u039C":"M","\u039D":"N","\u039E":"3","\u039F":"O","\u03A0":"P","\u03A1":"R","\u03A3":"S","\u03A4":"T","\u03A5":"Y","\u03A6":"F","\u03A7":"X","\u03A8":"PS","\u03A9":"W","\u03AA":"I","\u03AB":"Y","\u03AC":"a","\u03AD":"e","\u03AE":"h","\u03AF":"i","\u03B0":"y","\u03B1":"a","\u03B2":"b","\u03B3":"g","\u03B4":"d","\u03B5":"e","\u03B6":"z","\u03B7":"h","\u03B8":"8","\u03B9":"i","\u03BA":"k","\u03BB":"l","\u03BC":"m","\u03BD":"n","\u03BE":"3","\u03BF":"o","\u03C0":"p","\u03C1":"r","\u03C2":"s","\u03C3":"s","\u03C4":"t","\u03C5":"y","\u03C6":"f","\u03C7":"x","\u03C8":"ps","\u03C9":"w","\u03CA":"i","\u03CB":"y","\u03CC":"o","\u03CD":"y","\u03CE":"w","\u0401":"Yo","\u0402":"DJ","\u0404":"Ye","\u0406":"I","\u0407":"Yi","\u0408":"J","\u0409":"LJ","\u040A":"NJ","\u040B":"C","\u040F":"DZ","\u0410":"A","\u0411":"B","\u0412":"V","\u0413":"G","\u0414":"D","\u0415":"E","\u0416":"Zh","\u0417":"Z","\u0418":"I","\u0419":"J","\u041A":"K","\u041B":"L","\u041C":"M","\u041D":"N","\u041E":"O","\u041F":"P","\u0420":"R","\u0421":"S","\u0422":"T","\u0423":"U","\u0424":"F","\u0425":"H","\u0426":"C","\u0427":"Ch","\u0428":"Sh","\u0429":"Sh","\u042A":"U","\u042B":"Y","\u042C":"","\u042D":"E","\u042E":"Yu","\u042F":"Ya","\u0430":"a","\u0431":"b","\u0432":"v","\u0433":"g","\u0434":"d","\u0435":"e","\u0436":"zh","\u0437":"z","\u0438":"i","\u0439":"j","\u043A":"k","\u043B":"l","\u043C":"m","\u043D":"n","\u043E":"o","\u043F":"p","\u0440":"r","\u0441":"s","\u0442":"t","\u0443":"u","\u0444":"f","\u0445":"h","\u0446":"c","\u0447":"ch","\u0448":"sh","\u0449":"sh","\u044A":"u","\u044B":"y","\u044C":"","\u044D":"e","\u044E":"yu","\u044F":"ya","\u0451":"yo","\u0452":"dj","\u0454":"ye","\u0456":"i","\u0457":"yi","\u0458":"j","\u0459":"lj","\u045A":"nj","\u045B":"c","\u045D":"u","\u045F":"dz","\u0490":"G","\u0491":"g","\u0492":"GH","\u0493":"gh","\u049A":"KH","\u049B":"kh","\u04A2":"NG","\u04A3":"ng","\u04AE":"UE","\u04AF":"ue","\u04B0":"U","\u04B1":"u","\u04BA":"H","\u04BB":"h","\u04D8":"AE","\u04D9":"ae","\u04E8":"OE","\u04E9":"oe","\u0531":"A","\u0532":"B","\u0533":"G","\u0534":"D","\u0535":"E","\u0536":"Z","\u0537":"E'","\u0538":"Y'","\u0539":"T'","\u053A":"JH","\u053B":"I","\u053C":"L","\u053D":"X","\u053E":"C'","\u053F":"K","\u0540":"H","\u0541":"D'","\u0542":"GH","\u0543":"TW","\u0544":"M","\u0545":"Y","\u0546":"N","\u0547":"SH","\u0549":"CH","\u054A":"P","\u054B":"J","\u054C":"R'","\u054D":"S","\u054E":"V","\u054F":"T","\u0550":"R","\u0551":"C","\u0553":"P'","\u0554":"Q'","\u0555":"O''","\u0556":"F","\u0587":"EV","\u0621":"a","\u0622":"aa","\u0623":"a","\u0624":"u","\u0625":"i","\u0626":"e","\u0627":"a","\u0628":"b","\u0629":"h","\u062A":"t","\u062B":"th","\u062C":"j","\u062D":"h","\u062E":"kh","\u062F":"d","\u0630":"th","\u0631":"r","\u0632":"z","\u0633":"s","\u0634":"sh","\u0635":"s","\u0636":"dh","\u0637":"t","\u0638":"z","\u0639":"a","\u063A":"gh","\u0641":"f","\u0642":"q","\u0643":"k","\u0644":"l","\u0645":"m","\u0646":"n","\u0647":"h","\u0648":"w","\u0649":"a","\u064A":"y","\u064B":"an","\u064C":"on","\u064D":"en","\u064E":"a","\u064F":"u","\u0650":"e","\u0652":"","\u0660":"0","\u0661":"1","\u0662":"2","\u0663":"3","\u0664":"4","\u0665":"5","\u0666":"6","\u0667":"7","\u0668":"8","\u0669":"9","\u067E":"p","\u0686":"ch","\u0698":"zh","\u06A9":"k","\u06AF":"g","\u06CC":"y","\u06F0":"0","\u06F1":"1","\u06F2":"2","\u06F3":"3","\u06F4":"4","\u06F5":"5","\u06F6":"6","\u06F7":"7","\u06F8":"8","\u06F9":"9","\u0E3F":"baht","\u10D0":"a","\u10D1":"b","\u10D2":"g","\u10D3":"d","\u10D4":"e","\u10D5":"v","\u10D6":"z","\u10D7":"t","\u10D8":"i","\u10D9":"k","\u10DA":"l","\u10DB":"m","\u10DC":"n","\u10DD":"o","\u10DE":"p","\u10DF":"zh","\u10E0":"r","\u10E1":"s","\u10E2":"t","\u10E3":"u","\u10E4":"f","\u10E5":"k","\u10E6":"gh","\u10E7":"q","\u10E8":"sh","\u10E9":"ch","\u10EA":"ts","\u10EB":"dz","\u10EC":"ts","\u10ED":"ch","\u10EE":"kh","\u10EF":"j","\u10F0":"h","\u1E62":"S","\u1E63":"s","\u1E80":"W","\u1E81":"w","\u1E82":"W","\u1E83":"w","\u1E84":"W","\u1E85":"w","\u1E9E":"SS","\u1EA0":"A","\u1EA1":"a","\u1EA2":"A","\u1EA3":"a","\u1EA4":"A","\u1EA5":"a","\u1EA6":"A","\u1EA7":"a","\u1EA8":"A","\u1EA9":"a","\u1EAA":"A","\u1EAB":"a","\u1EAC":"A","\u1EAD":"a","\u1EAE":"A","\u1EAF":"a","\u1EB0":"A","\u1EB1":"a","\u1EB2":"A","\u1EB3":"a","\u1EB4":"A","\u1EB5":"a","\u1EB6":"A","\u1EB7":"a","\u1EB8":"E","\u1EB9":"e","\u1EBA":"E","\u1EBB":"e","\u1EBC":"E","\u1EBD":"e","\u1EBE":"E","\u1EBF":"e","\u1EC0":"E","\u1EC1":"e","\u1EC2":"E","\u1EC3":"e","\u1EC4":"E","\u1EC5":"e","\u1EC6":"E","\u1EC7":"e","\u1EC8":"I","\u1EC9":"i","\u1ECA":"I","\u1ECB":"i","\u1ECC":"O","\u1ECD":"o","\u1ECE":"O","\u1ECF":"o","\u1ED0":"O","\u1ED1":"o","\u1ED2":"O","\u1ED3":"o","\u1ED4":"O","\u1ED5":"o","\u1ED6":"O","\u1ED7":"o","\u1ED8":"O","\u1ED9":"o","\u1EDA":"O","\u1EDB":"o","\u1EDC":"O","\u1EDD":"o","\u1EDE":"O","\u1EDF":"o","\u1EE0":"O","\u1EE1":"o","\u1EE2":"O","\u1EE3":"o","\u1EE4":"U","\u1EE5":"u","\u1EE6":"U","\u1EE7":"u","\u1EE8":"U","\u1EE9":"u","\u1EEA":"U","\u1EEB":"u","\u1EEC":"U","\u1EED":"u","\u1EEE":"U","\u1EEF":"u","\u1EF0":"U","\u1EF1":"u","\u1EF2":"Y","\u1EF3":"y","\u1EF4":"Y","\u1EF5":"y","\u1EF6":"Y","\u1EF7":"y","\u1EF8":"Y","\u1EF9":"y","\u2013":"-","\u2018":"'","\u2019":"'","\u201C":"\\"","\u201D":"\\"","\u201E":"\\"","\u2020":"+","\u2022":"*","\u2026":"...","\u20A0":"ecu","\u20A2":"cruzeiro","\u20A3":"french franc","\u20A4":"lira","\u20A5":"mill","\u20A6":"naira","\u20A7":"peseta","\u20A8":"rupee","\u20A9":"won","\u20AA":"new shequel","\u20AB":"dong","\u20AC":"euro","\u20AD":"kip","\u20AE":"tugrik","\u20AF":"drachma","\u20B0":"penny","\u20B1":"peso","\u20B2":"guarani","\u20B3":"austral","\u20B4":"hryvnia","\u20B5":"cedi","\u20B8":"kazakhstani tenge","\u20B9":"indian rupee","\u20BA":"turkish lira","\u20BD":"russian ruble","\u20BF":"bitcoin","\u2120":"sm","\u2122":"tm","\u2202":"d","\u2206":"delta","\u2211":"sum","\u221E":"infinity","\u2665":"love","\u5143":"yuan","\u5186":"yen","\uFDFC":"rial","\uFEF5":"laa","\uFEF7":"laa","\uFEF9":"lai","\uFEFB":"la"}`),i=JSON.parse('{"bg":{"\u0419":"Y","\u0426":"Ts","\u0429":"Sht","\u042A":"A","\u042C":"Y","\u0439":"y","\u0446":"ts","\u0449":"sht","\u044A":"a","\u044C":"y"},"de":{"\xC4":"AE","\xE4":"ae","\xD6":"OE","\xF6":"oe","\xDC":"UE","\xFC":"ue","\xDF":"ss","%":"prozent","&":"und","|":"oder","\u2211":"summe","\u221E":"unendlich","\u2665":"liebe"},"es":{"%":"por ciento","&":"y","<":"menor que",">":"mayor que","|":"o","\xA2":"centavos","\xA3":"libras","\xA4":"moneda","\u20A3":"francos","\u2211":"suma","\u221E":"infinito","\u2665":"amor"},"fr":{"%":"pourcent","&":"et","<":"plus petit",">":"plus grand","|":"ou","\xA2":"centime","\xA3":"livre","\xA4":"devise","\u20A3":"franc","\u2211":"somme","\u221E":"infini","\u2665":"amour"},"pt":{"%":"porcento","&":"e","<":"menor",">":"maior","|":"ou","\xA2":"centavo","\u2211":"soma","\xA3":"libra","\u221E":"infinito","\u2665":"amor"},"uk":{"\u0418":"Y","\u0438":"y","\u0419":"Y","\u0439":"y","\u0426":"Ts","\u0446":"ts","\u0425":"Kh","\u0445":"kh","\u0429":"Shch","\u0449":"shch","\u0413":"H","\u0433":"h"},"vi":{"\u0110":"D","\u0111":"d"},"da":{"\xD8":"OE","\xF8":"oe","\xC5":"AA","\xE5":"aa","%":"procent","&":"og","|":"eller","$":"dollar","<":"mindre end",">":"st\xF8rre end"},"nb":{"&":"og","\xC5":"AA","\xC6":"AE","\xD8":"OE","\xE5":"aa","\xE6":"ae","\xF8":"oe"},"it":{"&":"e"},"nl":{"&":"en"},"sv":{"&":"och","\xC5":"AA","\xC4":"AE","\xD6":"OE","\xE5":"aa","\xE4":"ae","\xF6":"oe"}}');function e(a,m){if(typeof a!=="string")throw new Error("slugify: string argument expected");m=typeof m==="string"?{replacement:m}:m||{};var V=i[m.locale]||{},q=m.replacement===void 0?"-":m.replacement,c=m.trim===void 0?!0:m.trim,O=a.normalize().split("").reduce(function(b,P){var y=V[P];if(y===void 0)y=t[P];if(y===void 0)y=P;if(y===q)y=" ";return b+y.replace(m.remove||/[^\w\s$*_+~.()'"!\-:@]+/g,"")},"");if(m.strict)O=O.replace(/[^A-Za-z0-9\s]/g,"");if(c)O=O.trim();if(O=O.replace(/\s+/g,q),m.lower)O=O.toLowerCase();return O}return e.extend=function(a){Object.assign(t,a)},e})});var B=H((G,J)=>{(function(t,i){if(typeof G==="object"&&typeof J==="object")J.exports=i();else if(typeof define==="function"&&define.amd)define(function(){return i()});else t.pluralize=i()})(G,function(){var t=[],i=[],e={},a={},m={};function V(r){if(typeof r==="string")return new RegExp("^"+r+"$","i");return r}function q(r,g){if(r===g)return g;if(r===r.toLowerCase())return g.toLowerCase();if(r===r.toUpperCase())return g.toUpperCase();if(r[0]===r[0].toUpperCase())return g.charAt(0).toUpperCase()+g.substr(1).toLowerCase();return g.toLowerCase()}function c(r,g){return r.replace(/\$(\d{1,2})/g,function(f,n){return g[n]||""})}function O(r,g){return r.replace(g[0],function(f,n){var x=c(g[1],arguments);if(f==="")return q(r[n-1],x);return q(f,x)})}function b(r,g,f){if(!r.length||e.hasOwnProperty(r))return g;var n=f.length;while(n--){var x=f[n];if(x[0].test(g))return O(g,x)}return g}function P(r,g,f){return function(n){var x=n.toLowerCase();if(g.hasOwnProperty(x))return q(n,x);if(r.hasOwnProperty(x))return q(n,r[x]);return b(x,n,f)}}function y(r,g,f,n){return function(x){var C=x.toLowerCase();if(g.hasOwnProperty(C))return!0;if(r.hasOwnProperty(C))return!1;return b(C,C,f)===C}}function s(r,g,f){var n=g===1?s.singular(r):s.plural(r);return(f?g+" ":"")+n}return s.plural=P(m,a,t),s.isPlural=y(m,a,t),s.singular=P(a,m,i),s.isSingular=y(a,m,i),s.addPluralRule=function(r,g){t.push([V(r),g])},s.addSingularRule=function(r,g){i.push([V(r),g])},s.addUncountableRule=function(r){if(typeof r==="string"){e[r.toLowerCase()]=!0;return}s.addPluralRule(r,"$0"),s.addSingularRule(r,"$0")},s.addIrregularRule=function(r,g){g=g.toLowerCase(),r=r.toLowerCase(),m[r]=g,a[g]=r},[["I","we"],["me","us"],["he","they"],["she","they"],["them","them"],["myself","ourselves"],["yourself","yourselves"],["itself","themselves"],["herself","themselves"],["himself","themselves"],["themself","themselves"],["is","are"],["was","were"],["has","have"],["this","these"],["that","those"],["echo","echoes"],["dingo","dingoes"],["volcano","volcanoes"],["tornado","tornadoes"],["torpedo","torpedoes"],["genus","genera"],["viscus","viscera"],["stigma","stigmata"],["stoma","stomata"],["dogma","dogmata"],["lemma","lemmata"],["schema","schemata"],["anathema","anathemata"],["ox","oxen"],["axe","axes"],["die","dice"],["yes","yeses"],["foot","feet"],["eave","eaves"],["goose","geese"],["tooth","teeth"],["quiz","quizzes"],["human","humans"],["proof","proofs"],["carve","carves"],["valve","valves"],["looey","looies"],["thief","thieves"],["groove","grooves"],["pickaxe","pickaxes"],["passerby","passersby"]].forEach(function(r){return s.addIrregularRule(r[0],r[1])}),[[/s?$/i,"s"],[/[^\u0000-\u007F]$/i,"$0"],[/([^aeiou]ese)$/i,"$1"],[/(ax|test)is$/i,"$1es"],[/(alias|[^aou]us|t[lm]as|gas|ris)$/i,"$1es"],[/(e[mn]u)s?$/i,"$1s"],[/([^l]ias|[aeiou]las|[ejzr]as|[iu]am)$/i,"$1"],[/(alumn|syllab|vir|radi|nucle|fung|cact|stimul|termin|bacill|foc|uter|loc|strat)(?:us|i)$/i,"$1i"],[/(alumn|alg|vertebr)(?:a|ae)$/i,"$1ae"],[/(seraph|cherub)(?:im)?$/i,"$1im"],[/(her|at|gr)o$/i,"$1oes"],[/(agend|addend|millenni|dat|extrem|bacteri|desiderat|strat|candelabr|errat|ov|symposi|curricul|automat|quor)(?:a|um)$/i,"$1a"],[/(apheli|hyperbat|periheli|asyndet|noumen|phenomen|criteri|organ|prolegomen|hedr|automat)(?:a|on)$/i,"$1a"],[/sis$/i,"ses"],[/(?:(kni|wi|li)fe|(ar|l|ea|eo|oa|hoo)f)$/i,"$1$2ves"],[/([^aeiouy]|qu)y$/i,"$1ies"],[/([^ch][ieo][ln])ey$/i,"$1ies"],[/(x|ch|ss|sh|zz)$/i,"$1es"],[/(matr|cod|mur|sil|vert|ind|append)(?:ix|ex)$/i,"$1ices"],[/\b((?:tit)?m|l)(?:ice|ouse)$/i,"$1ice"],[/(pe)(?:rson|ople)$/i,"$1ople"],[/(child)(?:ren)?$/i,"$1ren"],[/eaux$/i,"$0"],[/m[ae]n$/i,"men"],["thou","you"]].forEach(function(r){return s.addPluralRule(r[0],r[1])}),[[/s$/i,""],[/(ss)$/i,"$1"],[/(wi|kni|(?:after|half|high|low|mid|non|night|[^\w]|^)li)ves$/i,"$1fe"],[/(ar|(?:wo|[ae])l|[eo][ao])ves$/i,"$1f"],[/ies$/i,"y"],[/\b([pl]|zomb|(?:neck|cross)?t|coll|faer|food|gen|goon|group|lass|talk|goal|cut)ies$/i,"$1ie"],[/\b(mon|smil)ies$/i,"$1ey"],[/\b((?:tit)?m|l)ice$/i,"$1ouse"],[/(seraph|cherub)im$/i,"$1"],[/(x|ch|ss|sh|zz|tto|go|cho|alias|[^aou]us|t[lm]as|gas|(?:her|at|gr)o|[aeiou]ris)(?:es)?$/i,"$1"],[/(analy|diagno|parenthe|progno|synop|the|empha|cri|ne)(?:sis|ses)$/i,"$1sis"],[/(movie|twelve|abuse|e[mn]u)s$/i,"$1"],[/(test)(?:is|es)$/i,"$1is"],[/(alumn|syllab|vir|radi|nucle|fung|cact|stimul|termin|bacill|foc|uter|loc|strat)(?:us|i)$/i,"$1us"],[/(agend|addend|millenni|dat|extrem|bacteri|desiderat|strat|candelabr|errat|ov|symposi|curricul|quor)a$/i,"$1um"],[/(apheli|hyperbat|periheli|asyndet|noumen|phenomen|criteri|organ|prolegomen|hedr|automat)a$/i,"$1on"],[/(alumn|alg|vertebr)ae$/i,"$1a"],[/(cod|mur|sil|vert|ind)ices$/i,"$1ex"],[/(matr|append)ices$/i,"$1ix"],[/(pe)(rson|ople)$/i,"$1rson"],[/(child)ren$/i,"$1"],[/(eau)x?$/i,"$1"],[/men$/i,"man"]].forEach(function(r){return s.addSingularRule(r[0],r[1])}),["adulthood","advice","agenda","aid","aircraft","alcohol","ammo","analytics","anime","athletics","audio","bison","blood","bream","buffalo","butter","carp","cash","chassis","chess","clothing","cod","commerce","cooperation","corps","debris","diabetes","digestion","elk","energy","equipment","excretion","expertise","firmware","flounder","fun","gallows","garbage","graffiti","hardware","headquarters","health","herpes","highjinks","homework","housework","information","jeans","justice","kudos","labour","literature","machinery","mackerel","mail","media","mews","moose","music","mud","manga","news","only","personnel","pike","plankton","pliers","police","pollution","premises","rain","research","rice","salmon","scissors","series","sewage","shambles","shrimp","software","species","staff","swine","tennis","traffic","transportation","trout","tuna","wealth","welfare","whiting","wildebeest","wildlife","you",/pok[eé]mon$/i,/[^aeiou]ese$/i,/deer$/i,/fish$/i,/measles$/i,/o[iu]s$/i,/pox$/i,/sheep$/i].forEach(s.addUncountableRule),s})});var R;((g)=>{g.Minute="* * * * *";g.TwoMinutes="*/2 * * * *";g.FiveMinutes="*/5 * * * *";g.TenMinutes="*/10 * * * *";g.FifteenMinutes="*/15 * * * *";g.ThirtyMinutes="*/30 * * * *";g.Hour="0 * * * *";g.HalfHour="0,30 * * * *";g.Day="0 0 * * *";g.Week="0 0 * * 0";g.Weekday="0 0 * * 1-5";g.Weekend="0 0 * * 0,6";g.Month="0 0 1 * *";g.Year="0 0 1 1 *"})(R||={});var U;((b)=>{b.Discord="discord";b.Facebook="facebook";b.GitHub="github";b.Instagram="instagram";b.LinkedIn="linkedin";b.Mastodon="mastodon";b.Slack="slack";b.Twitter="twitter";b.YouTube="youtube"})(U||={});var _;((a)=>{a[a.Success=0]="Success";a[a.FatalError=1]="FatalError";a[a.InvalidArgument=9]="InvalidArgument"})(_||={});var o=Z(X(),1);var A=new Set([".","!","?"]),fr=new Set([...A,":",'"',"'","\u201D"]);var j=Z(B(),1);function W(t){return Object.prototype.toString.call(t)}function Ir(t){if(t===null)return"null";const i=W(t).slice(8,-1).toLowerCase();return typeof t==="object"||typeof t==="function"?i:typeof t}export{Ir as getTypeName,U as SocialLinkIcon,_ as ExitCode,R as Every};
|
|
1
|
+
// @bun
|
|
2
|
+
var W=Object.create;var{getPrototypeOf:v,defineProperty:J,getOwnPropertyNames:F}=Object;var L=Object.prototype.hasOwnProperty;var K=(t,i,s)=>{s=t!=null?W(v(t)):{};const a=i||!t||!t.__esModule?J(s,"default",{value:t,enumerable:!0}):s;for(let m of F(t))if(!L.call(a,m))J(a,m,{get:()=>t[m],enumerable:!0});return a};var Z=(t,i)=>()=>(i||t((i={exports:{}}).exports,i),i.exports);var B=Z((o,Y)=>{(function(t,i){if(typeof o==="object"&&typeof Y==="object")Y.exports=i();else if(typeof define==="function"&&define.amd)define(function(){return i()});else t.pluralize=i()})(o,function(){var t=[],i=[],s={},a={},m={};function c(r){if(typeof r==="string")return new RegExp("^"+r+"$","i");return r}function q(r,g){if(r===g)return g;if(r===r.toLowerCase())return g.toLowerCase();if(r===r.toUpperCase())return g.toUpperCase();if(r[0]===r[0].toUpperCase())return g.charAt(0).toUpperCase()+g.substr(1).toLowerCase();return g.toLowerCase()}function V(r,g){return r.replace(/\$(\d{1,2})/g,function(f,n){return g[n]||""})}function y(r,g){return r.replace(g[0],function(f,n){var x=V(g[1],arguments);if(f==="")return q(r[n-1],x);return q(f,x)})}function b(r,g,f){if(!r.length||s.hasOwnProperty(r))return g;var n=f.length;while(n--){var x=f[n];if(x[0].test(g))return y(g,x)}return g}function P(r,g,f){return function(n){var x=n.toLowerCase();if(g.hasOwnProperty(x))return q(n,x);if(r.hasOwnProperty(x))return q(n,r[x]);return b(x,n,f)}}function O(r,g,f,n){return function(x){var C=x.toLowerCase();if(g.hasOwnProperty(C))return!0;if(r.hasOwnProperty(C))return!1;return b(C,C,f)===C}}function e(r,g,f){var n=g===1?e.singular(r):e.plural(r);return(f?g+" ":"")+n}return e.plural=P(m,a,t),e.isPlural=O(m,a,t),e.singular=P(a,m,i),e.isSingular=O(a,m,i),e.addPluralRule=function(r,g){t.push([c(r),g])},e.addSingularRule=function(r,g){i.push([c(r),g])},e.addUncountableRule=function(r){if(typeof r==="string"){s[r.toLowerCase()]=!0;return}e.addPluralRule(r,"$0"),e.addSingularRule(r,"$0")},e.addIrregularRule=function(r,g){g=g.toLowerCase(),r=r.toLowerCase(),m[r]=g,a[g]=r},[["I","we"],["me","us"],["he","they"],["she","they"],["them","them"],["myself","ourselves"],["yourself","yourselves"],["itself","themselves"],["herself","themselves"],["himself","themselves"],["themself","themselves"],["is","are"],["was","were"],["has","have"],["this","these"],["that","those"],["echo","echoes"],["dingo","dingoes"],["volcano","volcanoes"],["tornado","tornadoes"],["torpedo","torpedoes"],["genus","genera"],["viscus","viscera"],["stigma","stigmata"],["stoma","stomata"],["dogma","dogmata"],["lemma","lemmata"],["schema","schemata"],["anathema","anathemata"],["ox","oxen"],["axe","axes"],["die","dice"],["yes","yeses"],["foot","feet"],["eave","eaves"],["goose","geese"],["tooth","teeth"],["quiz","quizzes"],["human","humans"],["proof","proofs"],["carve","carves"],["valve","valves"],["looey","looies"],["thief","thieves"],["groove","grooves"],["pickaxe","pickaxes"],["passerby","passersby"]].forEach(function(r){return e.addIrregularRule(r[0],r[1])}),[[/s?$/i,"s"],[/[^\u0000-\u007F]$/i,"$0"],[/([^aeiou]ese)$/i,"$1"],[/(ax|test)is$/i,"$1es"],[/(alias|[^aou]us|t[lm]as|gas|ris)$/i,"$1es"],[/(e[mn]u)s?$/i,"$1s"],[/([^l]ias|[aeiou]las|[ejzr]as|[iu]am)$/i,"$1"],[/(alumn|syllab|vir|radi|nucle|fung|cact|stimul|termin|bacill|foc|uter|loc|strat)(?:us|i)$/i,"$1i"],[/(alumn|alg|vertebr)(?:a|ae)$/i,"$1ae"],[/(seraph|cherub)(?:im)?$/i,"$1im"],[/(her|at|gr)o$/i,"$1oes"],[/(agend|addend|millenni|dat|extrem|bacteri|desiderat|strat|candelabr|errat|ov|symposi|curricul|automat|quor)(?:a|um)$/i,"$1a"],[/(apheli|hyperbat|periheli|asyndet|noumen|phenomen|criteri|organ|prolegomen|hedr|automat)(?:a|on)$/i,"$1a"],[/sis$/i,"ses"],[/(?:(kni|wi|li)fe|(ar|l|ea|eo|oa|hoo)f)$/i,"$1$2ves"],[/([^aeiouy]|qu)y$/i,"$1ies"],[/([^ch][ieo][ln])ey$/i,"$1ies"],[/(x|ch|ss|sh|zz)$/i,"$1es"],[/(matr|cod|mur|sil|vert|ind|append)(?:ix|ex)$/i,"$1ices"],[/\b((?:tit)?m|l)(?:ice|ouse)$/i,"$1ice"],[/(pe)(?:rson|ople)$/i,"$1ople"],[/(child)(?:ren)?$/i,"$1ren"],[/eaux$/i,"$0"],[/m[ae]n$/i,"men"],["thou","you"]].forEach(function(r){return e.addPluralRule(r[0],r[1])}),[[/s$/i,""],[/(ss)$/i,"$1"],[/(wi|kni|(?:after|half|high|low|mid|non|night|[^\w]|^)li)ves$/i,"$1fe"],[/(ar|(?:wo|[ae])l|[eo][ao])ves$/i,"$1f"],[/ies$/i,"y"],[/\b([pl]|zomb|(?:neck|cross)?t|coll|faer|food|gen|goon|group|lass|talk|goal|cut)ies$/i,"$1ie"],[/\b(mon|smil)ies$/i,"$1ey"],[/\b((?:tit)?m|l)ice$/i,"$1ouse"],[/(seraph|cherub)im$/i,"$1"],[/(x|ch|ss|sh|zz|tto|go|cho|alias|[^aou]us|t[lm]as|gas|(?:her|at|gr)o|[aeiou]ris)(?:es)?$/i,"$1"],[/(analy|diagno|parenthe|progno|synop|the|empha|cri|ne)(?:sis|ses)$/i,"$1sis"],[/(movie|twelve|abuse|e[mn]u)s$/i,"$1"],[/(test)(?:is|es)$/i,"$1is"],[/(alumn|syllab|vir|radi|nucle|fung|cact|stimul|termin|bacill|foc|uter|loc|strat)(?:us|i)$/i,"$1us"],[/(agend|addend|millenni|dat|extrem|bacteri|desiderat|strat|candelabr|errat|ov|symposi|curricul|quor)a$/i,"$1um"],[/(apheli|hyperbat|periheli|asyndet|noumen|phenomen|criteri|organ|prolegomen|hedr|automat)a$/i,"$1on"],[/(alumn|alg|vertebr)ae$/i,"$1a"],[/(cod|mur|sil|vert|ind)ices$/i,"$1ex"],[/(matr|append)ices$/i,"$1ix"],[/(pe)(rson|ople)$/i,"$1rson"],[/(child)ren$/i,"$1"],[/(eau)x?$/i,"$1"],[/men$/i,"man"]].forEach(function(r){return e.addSingularRule(r[0],r[1])}),["adulthood","advice","agenda","aid","aircraft","alcohol","ammo","analytics","anime","athletics","audio","bison","blood","bream","buffalo","butter","carp","cash","chassis","chess","clothing","cod","commerce","cooperation","corps","debris","diabetes","digestion","elk","energy","equipment","excretion","expertise","firmware","flounder","fun","gallows","garbage","graffiti","hardware","headquarters","health","herpes","highjinks","homework","housework","information","jeans","justice","kudos","labour","literature","machinery","mackerel","mail","media","mews","moose","music","mud","manga","news","only","personnel","pike","plankton","pliers","police","pollution","premises","rain","research","rice","salmon","scissors","series","sewage","shambles","shrimp","software","species","staff","swine","tennis","traffic","transportation","trout","tuna","wealth","welfare","whiting","wildebeest","wildlife","you",/pok[e\u00E9]mon$/i,/[^aeiou]ese$/i,/deer$/i,/fish$/i,/measles$/i,/o[iu]s$/i,/pox$/i,/sheep$/i].forEach(e.addUncountableRule),e})});var X=Z(($,G)=>{(function(t,i,s){if(typeof $==="object")G.exports=s(),G.exports.default=s();else if(typeof define==="function"&&define.amd)define(s);else i[t]=s()})("slugify",$,function(){var t=JSON.parse(`{"$":"dollar","%":"percent","&":"and","<":"less",">":"greater","|":"or","\xA2":"cent","\xA3":"pound","\xA4":"currency","\xA5":"yen","\xA9":"(c)","\xAA":"a","\xAE":"(r)","\xBA":"o","\xC0":"A","\xC1":"A","\xC2":"A","\xC3":"A","\xC4":"A","\xC5":"A","\xC6":"AE","\xC7":"C","\xC8":"E","\xC9":"E","\xCA":"E","\xCB":"E","\xCC":"I","\xCD":"I","\xCE":"I","\xCF":"I","\xD0":"D","\xD1":"N","\xD2":"O","\xD3":"O","\xD4":"O","\xD5":"O","\xD6":"O","\xD8":"O","\xD9":"U","\xDA":"U","\xDB":"U","\xDC":"U","\xDD":"Y","\xDE":"TH","\xDF":"ss","\xE0":"a","\xE1":"a","\xE2":"a","\xE3":"a","\xE4":"a","\xE5":"a","\xE6":"ae","\xE7":"c","\xE8":"e","\xE9":"e","\xEA":"e","\xEB":"e","\xEC":"i","\xED":"i","\xEE":"i","\xEF":"i","\xF0":"d","\xF1":"n","\xF2":"o","\xF3":"o","\xF4":"o","\xF5":"o","\xF6":"o","\xF8":"o","\xF9":"u","\xFA":"u","\xFB":"u","\xFC":"u","\xFD":"y","\xFE":"th","\xFF":"y","\u0100":"A","\u0101":"a","\u0102":"A","\u0103":"a","\u0104":"A","\u0105":"a","\u0106":"C","\u0107":"c","\u010C":"C","\u010D":"c","\u010E":"D","\u010F":"d","\u0110":"DJ","\u0111":"dj","\u0112":"E","\u0113":"e","\u0116":"E","\u0117":"e","\u0118":"e","\u0119":"e","\u011A":"E","\u011B":"e","\u011E":"G","\u011F":"g","\u0122":"G","\u0123":"g","\u0128":"I","\u0129":"i","\u012A":"i","\u012B":"i","\u012E":"I","\u012F":"i","\u0130":"I","\u0131":"i","\u0136":"k","\u0137":"k","\u013B":"L","\u013C":"l","\u013D":"L","\u013E":"l","\u0141":"L","\u0142":"l","\u0143":"N","\u0144":"n","\u0145":"N","\u0146":"n","\u0147":"N","\u0148":"n","\u014C":"O","\u014D":"o","\u0150":"O","\u0151":"o","\u0152":"OE","\u0153":"oe","\u0154":"R","\u0155":"r","\u0158":"R","\u0159":"r","\u015A":"S","\u015B":"s","\u015E":"S","\u015F":"s","\u0160":"S","\u0161":"s","\u0162":"T","\u0163":"t","\u0164":"T","\u0165":"t","\u0168":"U","\u0169":"u","\u016A":"u","\u016B":"u","\u016E":"U","\u016F":"u","\u0170":"U","\u0171":"u","\u0172":"U","\u0173":"u","\u0174":"W","\u0175":"w","\u0176":"Y","\u0177":"y","\u0178":"Y","\u0179":"Z","\u017A":"z","\u017B":"Z","\u017C":"z","\u017D":"Z","\u017E":"z","\u018F":"E","\u0192":"f","\u01A0":"O","\u01A1":"o","\u01AF":"U","\u01B0":"u","\u01C8":"LJ","\u01C9":"lj","\u01CB":"NJ","\u01CC":"nj","\u0218":"S","\u0219":"s","\u021A":"T","\u021B":"t","\u0259":"e","\u02DA":"o","\u0386":"A","\u0388":"E","\u0389":"H","\u038A":"I","\u038C":"O","\u038E":"Y","\u038F":"W","\u0390":"i","\u0391":"A","\u0392":"B","\u0393":"G","\u0394":"D","\u0395":"E","\u0396":"Z","\u0397":"H","\u0398":"8","\u0399":"I","\u039A":"K","\u039B":"L","\u039C":"M","\u039D":"N","\u039E":"3","\u039F":"O","\u03A0":"P","\u03A1":"R","\u03A3":"S","\u03A4":"T","\u03A5":"Y","\u03A6":"F","\u03A7":"X","\u03A8":"PS","\u03A9":"W","\u03AA":"I","\u03AB":"Y","\u03AC":"a","\u03AD":"e","\u03AE":"h","\u03AF":"i","\u03B0":"y","\u03B1":"a","\u03B2":"b","\u03B3":"g","\u03B4":"d","\u03B5":"e","\u03B6":"z","\u03B7":"h","\u03B8":"8","\u03B9":"i","\u03BA":"k","\u03BB":"l","\u03BC":"m","\u03BD":"n","\u03BE":"3","\u03BF":"o","\u03C0":"p","\u03C1":"r","\u03C2":"s","\u03C3":"s","\u03C4":"t","\u03C5":"y","\u03C6":"f","\u03C7":"x","\u03C8":"ps","\u03C9":"w","\u03CA":"i","\u03CB":"y","\u03CC":"o","\u03CD":"y","\u03CE":"w","\u0401":"Yo","\u0402":"DJ","\u0404":"Ye","\u0406":"I","\u0407":"Yi","\u0408":"J","\u0409":"LJ","\u040A":"NJ","\u040B":"C","\u040F":"DZ","\u0410":"A","\u0411":"B","\u0412":"V","\u0413":"G","\u0414":"D","\u0415":"E","\u0416":"Zh","\u0417":"Z","\u0418":"I","\u0419":"J","\u041A":"K","\u041B":"L","\u041C":"M","\u041D":"N","\u041E":"O","\u041F":"P","\u0420":"R","\u0421":"S","\u0422":"T","\u0423":"U","\u0424":"F","\u0425":"H","\u0426":"C","\u0427":"Ch","\u0428":"Sh","\u0429":"Sh","\u042A":"U","\u042B":"Y","\u042C":"","\u042D":"E","\u042E":"Yu","\u042F":"Ya","\u0430":"a","\u0431":"b","\u0432":"v","\u0433":"g","\u0434":"d","\u0435":"e","\u0436":"zh","\u0437":"z","\u0438":"i","\u0439":"j","\u043A":"k","\u043B":"l","\u043C":"m","\u043D":"n","\u043E":"o","\u043F":"p","\u0440":"r","\u0441":"s","\u0442":"t","\u0443":"u","\u0444":"f","\u0445":"h","\u0446":"c","\u0447":"ch","\u0448":"sh","\u0449":"sh","\u044A":"u","\u044B":"y","\u044C":"","\u044D":"e","\u044E":"yu","\u044F":"ya","\u0451":"yo","\u0452":"dj","\u0454":"ye","\u0456":"i","\u0457":"yi","\u0458":"j","\u0459":"lj","\u045A":"nj","\u045B":"c","\u045D":"u","\u045F":"dz","\u0490":"G","\u0491":"g","\u0492":"GH","\u0493":"gh","\u049A":"KH","\u049B":"kh","\u04A2":"NG","\u04A3":"ng","\u04AE":"UE","\u04AF":"ue","\u04B0":"U","\u04B1":"u","\u04BA":"H","\u04BB":"h","\u04D8":"AE","\u04D9":"ae","\u04E8":"OE","\u04E9":"oe","\u0531":"A","\u0532":"B","\u0533":"G","\u0534":"D","\u0535":"E","\u0536":"Z","\u0537":"E'","\u0538":"Y'","\u0539":"T'","\u053A":"JH","\u053B":"I","\u053C":"L","\u053D":"X","\u053E":"C'","\u053F":"K","\u0540":"H","\u0541":"D'","\u0542":"GH","\u0543":"TW","\u0544":"M","\u0545":"Y","\u0546":"N","\u0547":"SH","\u0549":"CH","\u054A":"P","\u054B":"J","\u054C":"R'","\u054D":"S","\u054E":"V","\u054F":"T","\u0550":"R","\u0551":"C","\u0553":"P'","\u0554":"Q'","\u0555":"O''","\u0556":"F","\u0587":"EV","\u0621":"a","\u0622":"aa","\u0623":"a","\u0624":"u","\u0625":"i","\u0626":"e","\u0627":"a","\u0628":"b","\u0629":"h","\u062A":"t","\u062B":"th","\u062C":"j","\u062D":"h","\u062E":"kh","\u062F":"d","\u0630":"th","\u0631":"r","\u0632":"z","\u0633":"s","\u0634":"sh","\u0635":"s","\u0636":"dh","\u0637":"t","\u0638":"z","\u0639":"a","\u063A":"gh","\u0641":"f","\u0642":"q","\u0643":"k","\u0644":"l","\u0645":"m","\u0646":"n","\u0647":"h","\u0648":"w","\u0649":"a","\u064A":"y","\u064B":"an","\u064C":"on","\u064D":"en","\u064E":"a","\u064F":"u","\u0650":"e","\u0652":"","\u0660":"0","\u0661":"1","\u0662":"2","\u0663":"3","\u0664":"4","\u0665":"5","\u0666":"6","\u0667":"7","\u0668":"8","\u0669":"9","\u067E":"p","\u0686":"ch","\u0698":"zh","\u06A9":"k","\u06AF":"g","\u06CC":"y","\u06F0":"0","\u06F1":"1","\u06F2":"2","\u06F3":"3","\u06F4":"4","\u06F5":"5","\u06F6":"6","\u06F7":"7","\u06F8":"8","\u06F9":"9","\u0E3F":"baht","\u10D0":"a","\u10D1":"b","\u10D2":"g","\u10D3":"d","\u10D4":"e","\u10D5":"v","\u10D6":"z","\u10D7":"t","\u10D8":"i","\u10D9":"k","\u10DA":"l","\u10DB":"m","\u10DC":"n","\u10DD":"o","\u10DE":"p","\u10DF":"zh","\u10E0":"r","\u10E1":"s","\u10E2":"t","\u10E3":"u","\u10E4":"f","\u10E5":"k","\u10E6":"gh","\u10E7":"q","\u10E8":"sh","\u10E9":"ch","\u10EA":"ts","\u10EB":"dz","\u10EC":"ts","\u10ED":"ch","\u10EE":"kh","\u10EF":"j","\u10F0":"h","\u1E62":"S","\u1E63":"s","\u1E80":"W","\u1E81":"w","\u1E82":"W","\u1E83":"w","\u1E84":"W","\u1E85":"w","\u1E9E":"SS","\u1EA0":"A","\u1EA1":"a","\u1EA2":"A","\u1EA3":"a","\u1EA4":"A","\u1EA5":"a","\u1EA6":"A","\u1EA7":"a","\u1EA8":"A","\u1EA9":"a","\u1EAA":"A","\u1EAB":"a","\u1EAC":"A","\u1EAD":"a","\u1EAE":"A","\u1EAF":"a","\u1EB0":"A","\u1EB1":"a","\u1EB2":"A","\u1EB3":"a","\u1EB4":"A","\u1EB5":"a","\u1EB6":"A","\u1EB7":"a","\u1EB8":"E","\u1EB9":"e","\u1EBA":"E","\u1EBB":"e","\u1EBC":"E","\u1EBD":"e","\u1EBE":"E","\u1EBF":"e","\u1EC0":"E","\u1EC1":"e","\u1EC2":"E","\u1EC3":"e","\u1EC4":"E","\u1EC5":"e","\u1EC6":"E","\u1EC7":"e","\u1EC8":"I","\u1EC9":"i","\u1ECA":"I","\u1ECB":"i","\u1ECC":"O","\u1ECD":"o","\u1ECE":"O","\u1ECF":"o","\u1ED0":"O","\u1ED1":"o","\u1ED2":"O","\u1ED3":"o","\u1ED4":"O","\u1ED5":"o","\u1ED6":"O","\u1ED7":"o","\u1ED8":"O","\u1ED9":"o","\u1EDA":"O","\u1EDB":"o","\u1EDC":"O","\u1EDD":"o","\u1EDE":"O","\u1EDF":"o","\u1EE0":"O","\u1EE1":"o","\u1EE2":"O","\u1EE3":"o","\u1EE4":"U","\u1EE5":"u","\u1EE6":"U","\u1EE7":"u","\u1EE8":"U","\u1EE9":"u","\u1EEA":"U","\u1EEB":"u","\u1EEC":"U","\u1EED":"u","\u1EEE":"U","\u1EEF":"u","\u1EF0":"U","\u1EF1":"u","\u1EF2":"Y","\u1EF3":"y","\u1EF4":"Y","\u1EF5":"y","\u1EF6":"Y","\u1EF7":"y","\u1EF8":"Y","\u1EF9":"y","\u2013":"-","\u2018":"'","\u2019":"'","\u201C":"\\"","\u201D":"\\"","\u201E":"\\"","\u2020":"+","\u2022":"*","\u2026":"...","\u20A0":"ecu","\u20A2":"cruzeiro","\u20A3":"french franc","\u20A4":"lira","\u20A5":"mill","\u20A6":"naira","\u20A7":"peseta","\u20A8":"rupee","\u20A9":"won","\u20AA":"new shequel","\u20AB":"dong","\u20AC":"euro","\u20AD":"kip","\u20AE":"tugrik","\u20AF":"drachma","\u20B0":"penny","\u20B1":"peso","\u20B2":"guarani","\u20B3":"austral","\u20B4":"hryvnia","\u20B5":"cedi","\u20B8":"kazakhstani tenge","\u20B9":"indian rupee","\u20BA":"turkish lira","\u20BD":"russian ruble","\u20BF":"bitcoin","\u2120":"sm","\u2122":"tm","\u2202":"d","\u2206":"delta","\u2211":"sum","\u221E":"infinity","\u2665":"love","\u5143":"yuan","\u5186":"yen","\uFDFC":"rial","\uFEF5":"laa","\uFEF7":"laa","\uFEF9":"lai","\uFEFB":"la"}`),i=JSON.parse('{"bg":{"\u0419":"Y","\u0426":"Ts","\u0429":"Sht","\u042A":"A","\u042C":"Y","\u0439":"y","\u0446":"ts","\u0449":"sht","\u044A":"a","\u044C":"y"},"de":{"\xC4":"AE","\xE4":"ae","\xD6":"OE","\xF6":"oe","\xDC":"UE","\xFC":"ue","\xDF":"ss","%":"prozent","&":"und","|":"oder","\u2211":"summe","\u221E":"unendlich","\u2665":"liebe"},"es":{"%":"por ciento","&":"y","<":"menor que",">":"mayor que","|":"o","\xA2":"centavos","\xA3":"libras","\xA4":"moneda","\u20A3":"francos","\u2211":"suma","\u221E":"infinito","\u2665":"amor"},"fr":{"%":"pourcent","&":"et","<":"plus petit",">":"plus grand","|":"ou","\xA2":"centime","\xA3":"livre","\xA4":"devise","\u20A3":"franc","\u2211":"somme","\u221E":"infini","\u2665":"amour"},"pt":{"%":"porcento","&":"e","<":"menor",">":"maior","|":"ou","\xA2":"centavo","\u2211":"soma","\xA3":"libra","\u221E":"infinito","\u2665":"amor"},"uk":{"\u0418":"Y","\u0438":"y","\u0419":"Y","\u0439":"y","\u0426":"Ts","\u0446":"ts","\u0425":"Kh","\u0445":"kh","\u0429":"Shch","\u0449":"shch","\u0413":"H","\u0433":"h"},"vi":{"\u0110":"D","\u0111":"d"},"da":{"\xD8":"OE","\xF8":"oe","\xC5":"AA","\xE5":"aa","%":"procent","&":"og","|":"eller","$":"dollar","<":"mindre end",">":"st\xF8rre end"},"nb":{"&":"og","\xC5":"AA","\xC6":"AE","\xD8":"OE","\xE5":"aa","\xE6":"ae","\xF8":"oe"},"it":{"&":"e"},"nl":{"&":"en"},"sv":{"&":"och","\xC5":"AA","\xC4":"AE","\xD6":"OE","\xE5":"aa","\xE4":"ae","\xF6":"oe"}}');function s(a,m){if(typeof a!=="string")throw new Error("slugify: string argument expected");m=typeof m==="string"?{replacement:m}:m||{};var c=i[m.locale]||{},q=m.replacement===void 0?"-":m.replacement,V=m.trim===void 0?!0:m.trim,y=a.normalize().split("").reduce(function(b,P){var O=c[P];if(O===void 0)O=t[P];if(O===void 0)O=P;if(O===q)O=" ";return b+O.replace(m.remove||/[^\w\s$*_+~.()'"!\-:@]+/g,"")},"");if(m.strict)y=y.replace(/[^A-Za-z0-9\s]/g,"");if(V)y=y.trim();if(y=y.replace(/\s+/g,q),m.lower)y=y.toLowerCase();return y}return s.extend=function(a){Object.assign(t,a)},s})});var D;((g)=>{g.Minute="* * * * *";g.TwoMinutes="*/2 * * * *";g.FiveMinutes="*/5 * * * *";g.TenMinutes="*/10 * * * *";g.FifteenMinutes="*/15 * * * *";g.ThirtyMinutes="*/30 * * * *";g.Hour="0 * * * *";g.HalfHour="0,30 * * * *";g.Day="0 0 * * *";g.Week="0 0 * * 0";g.Weekday="0 0 * * 1-5";g.Weekend="0 0 * * 0,6";g.Month="0 0 1 * *";g.Year="0 0 1 1 *"})(D||={});var R;((b)=>{b.Discord="discord";b.Facebook="facebook";b.GitHub="github";b.Instagram="instagram";b.LinkedIn="linkedin";b.Mastodon="mastodon";b.Slack="slack";b.Twitter="twitter";b.YouTube="youtube"})(R||={});var U;((a)=>{a[a.Success=0]="Success";a[a.FatalError=1]="FatalError";a[a.InvalidArgument=9]="InvalidArgument"})(U||={});var _=new Set([".","!","?"]),sr=new Set([..._,":",'"',"'","\u201D"]);function H(t){return Object.prototype.toString.call(t)}var j=K(B(),1);var w=K(X(),1);import{isString as Nr}from"@stacksjs/validation";function Ir(t){if(t===null)return"null";const i=H(t).slice(8,-1).toLowerCase();return typeof t==="object"||typeof t==="function"?i:typeof t}export{Ir as getTypeName,R as SocialLinkIcon,U as ExitCode,D as Every};
|
|
2
3
|
|
|
3
|
-
//# debugId=
|
|
4
|
+
//# debugId=8B4FA949DED5E05864756E2164756E21
|
|
4
5
|
//# sourceMappingURL=index.js.map
|