@zuzjs/core 0.1.4 → 0.1.6
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/cjs/colors.d.ts +24 -0
- package/dist/cjs/colors.js +26 -0
- package/dist/{index.d.ts → cjs/index.d.ts} +7 -3
- package/dist/{index.js → cjs/index.js} +109 -108
- package/dist/cjs/regexps.js +6 -0
- package/dist/{types.d.ts → cjs/types.d.ts} +1 -1
- package/dist/cjs/types.js +5 -0
- package/dist/{withGlobals.js → cjs/withGlobals.js} +1 -3
- package/dist/esm/colors.d.ts +24 -0
- package/dist/esm/colors.js +26 -0
- package/dist/esm/index.d.ts +40 -0
- package/dist/esm/index.js +373 -0
- package/dist/esm/regexps.d.ts +3 -0
- package/dist/esm/regexps.js +6 -0
- package/dist/esm/types.d.ts +22 -0
- package/dist/esm/types.js +5 -0
- package/dist/esm/withGlobals.d.ts +25 -0
- package/dist/esm/withGlobals.js +77 -0
- package/dist/tsconfig.esm.tsbuildinfo +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +9 -4
- package/dist/regexps.js +0 -9
- package/dist/types.js +0 -8
- /package/dist/{regexps.d.ts → cjs/regexps.d.ts} +0 -0
- /package/dist/{withGlobals.d.ts → cjs/withGlobals.d.ts} +0 -0
|
@@ -0,0 +1,373 @@
|
|
|
1
|
+
import axios from "axios";
|
|
2
|
+
import Hashids from "hashids";
|
|
3
|
+
import Cookies from "js-cookie";
|
|
4
|
+
import md5 from "md5";
|
|
5
|
+
import moment from "moment";
|
|
6
|
+
import { colorNames } from "./colors";
|
|
7
|
+
import { hexColorRegex, hslColorRegex, rgbaColorRegex } from "./regexps";
|
|
8
|
+
import { SORT } from "./types";
|
|
9
|
+
import _ from "./withGlobals";
|
|
10
|
+
export * from "./types";
|
|
11
|
+
export const __SALT = `zuzjs-core`;
|
|
12
|
+
export { default as "_" } from "./withGlobals";
|
|
13
|
+
export const numberInRange = (min, max) => {
|
|
14
|
+
return Math.floor(Math.random() * (max - min + 1)) + min;
|
|
15
|
+
};
|
|
16
|
+
export const toHash = (n, len = 6, SALT = null) => new Hashids(SALT || __SALT, len).encode(n);
|
|
17
|
+
export const fromHash = (str, SALT = null) => {
|
|
18
|
+
try {
|
|
19
|
+
const n = new Hashids(SALT || __SALT, +process.env.HASHIDS_LENGTH).decode(str);
|
|
20
|
+
return n.length >= 0 ? Number(n[0]) : 0;
|
|
21
|
+
}
|
|
22
|
+
catch (e) {
|
|
23
|
+
return 0;
|
|
24
|
+
}
|
|
25
|
+
};
|
|
26
|
+
export const MD5 = (str) => md5(str);
|
|
27
|
+
export const uuid = (len) => toHash(numberInRange(11111111111, 999999999999));
|
|
28
|
+
export const ucfirst = (o) => `${o.charAt(0).toUpperCase()}${o.substring(1, o.length)}`;
|
|
29
|
+
export const urldecode = (str) => decodeURIComponent(str.replace(/\+/g, '%20'));
|
|
30
|
+
export const urlencode = (str) => encodeURIComponent(str);
|
|
31
|
+
export const pluralize = (word, count) => `${word}${count !== 1 ? 's' : ''}`;
|
|
32
|
+
export const isHexColor = (color) => hexColorRegex.test(color);
|
|
33
|
+
export const isRgbaColor = (color) => rgbaColorRegex.test(color);
|
|
34
|
+
export const isHslColor = (color) => hslColorRegex.test(color);
|
|
35
|
+
export const isColorName = (color) => colorNames.includes(color.toLowerCase());
|
|
36
|
+
// Function to validate a color string
|
|
37
|
+
export const isColor = (color) => isHexColor(color) || isRgbaColor(color) || isHslColor(color);
|
|
38
|
+
export const hexToRgba = (hex, alpha = 1) => {
|
|
39
|
+
// Remove the hash symbol if present
|
|
40
|
+
hex = hex.replace(/^#/, '');
|
|
41
|
+
// If shorthand hex (#RGB), expand it to full form (#RRGGBB)
|
|
42
|
+
if (hex.length === 3) {
|
|
43
|
+
hex = hex.split('').map(char => char + char).join('');
|
|
44
|
+
}
|
|
45
|
+
// Convert to integer values for RGB
|
|
46
|
+
const bigint = parseInt(hex, 16);
|
|
47
|
+
const r = (bigint >> 16) & 255;
|
|
48
|
+
const g = (bigint >> 8) & 255;
|
|
49
|
+
const b = bigint & 255;
|
|
50
|
+
return `rgba(${r}, ${g}, ${b}, ${alpha})`;
|
|
51
|
+
};
|
|
52
|
+
export const removeDuplicates = (array) => {
|
|
53
|
+
return array.reduce((accumulator, currentValue) => {
|
|
54
|
+
if (!accumulator.includes(currentValue)) {
|
|
55
|
+
accumulator.push(currentValue);
|
|
56
|
+
}
|
|
57
|
+
return accumulator;
|
|
58
|
+
}, []);
|
|
59
|
+
};
|
|
60
|
+
export const getCancelToken = () => axios.CancelToken.source();
|
|
61
|
+
export const withPost = async (uri, data, timeout = 60, ignoreKind = false, headers, onProgress) => {
|
|
62
|
+
const _cookies = Cookies.get();
|
|
63
|
+
if (data instanceof FormData) {
|
|
64
|
+
for (const c in _cookies) {
|
|
65
|
+
data.append(c, _cookies[c]);
|
|
66
|
+
}
|
|
67
|
+
return new Promise((resolve, reject) => {
|
|
68
|
+
axios({
|
|
69
|
+
method: 'post',
|
|
70
|
+
url: uri,
|
|
71
|
+
data: data,
|
|
72
|
+
timeout: timeout * 1000,
|
|
73
|
+
headers: {
|
|
74
|
+
'Content-Type': 'multipart/form-data',
|
|
75
|
+
...(headers || {})
|
|
76
|
+
},
|
|
77
|
+
onUploadProgress: ev => onProgress && onProgress(ev)
|
|
78
|
+
})
|
|
79
|
+
.then(resp => {
|
|
80
|
+
if (resp.data && "kind" in resp.data) {
|
|
81
|
+
resolve(resp.data);
|
|
82
|
+
}
|
|
83
|
+
else {
|
|
84
|
+
reject(resp.data);
|
|
85
|
+
}
|
|
86
|
+
})
|
|
87
|
+
.catch(err => reject(err));
|
|
88
|
+
});
|
|
89
|
+
}
|
|
90
|
+
else if (_(data).isString()) {
|
|
91
|
+
return new Promise((resolve, reject) => {
|
|
92
|
+
axios.post(uri, data, {
|
|
93
|
+
timeout: 1000 * timeout,
|
|
94
|
+
headers: {
|
|
95
|
+
'Content-Type': 'application/json',
|
|
96
|
+
...(headers || {})
|
|
97
|
+
}
|
|
98
|
+
})
|
|
99
|
+
.then(resp => {
|
|
100
|
+
if (resp.data && (ignoreKind || ("kind" in resp.data))) {
|
|
101
|
+
resolve(resp.data);
|
|
102
|
+
}
|
|
103
|
+
else {
|
|
104
|
+
reject(resp.data);
|
|
105
|
+
}
|
|
106
|
+
})
|
|
107
|
+
.catch(err => {
|
|
108
|
+
if (err?.response?.data)
|
|
109
|
+
reject(err.response.data);
|
|
110
|
+
else
|
|
111
|
+
reject(err.code && err.code == `ERR_NETWORK` ? { error: err.code, message: navigator.onLine ? `Unable to connect to the server. It may be temporarily down.` : `Network error: Unable to connect. Please check your internet connection and try again.` } : err);
|
|
112
|
+
});
|
|
113
|
+
});
|
|
114
|
+
}
|
|
115
|
+
else if (typeof data === "object" && !Array.isArray(data) && data !== null) {
|
|
116
|
+
return new Promise((resolve, reject) => {
|
|
117
|
+
axios.post(uri, {
|
|
118
|
+
...data,
|
|
119
|
+
..._cookies,
|
|
120
|
+
__stmp: new Date().getTime() / 1000
|
|
121
|
+
}, {
|
|
122
|
+
timeout: 1000 * timeout,
|
|
123
|
+
headers: {
|
|
124
|
+
'Content-Type': 'application/json',
|
|
125
|
+
...(headers || {})
|
|
126
|
+
}
|
|
127
|
+
})
|
|
128
|
+
.then(resp => {
|
|
129
|
+
if (resp.data && (ignoreKind || ("kind" in resp.data))) {
|
|
130
|
+
resolve(resp.data);
|
|
131
|
+
}
|
|
132
|
+
else {
|
|
133
|
+
reject(resp.data);
|
|
134
|
+
}
|
|
135
|
+
})
|
|
136
|
+
.catch(err => {
|
|
137
|
+
if (err?.response?.data)
|
|
138
|
+
reject(err.response.data);
|
|
139
|
+
else
|
|
140
|
+
reject(err.code && err.code == `ERR_NETWORK` ? { error: err.code, message: navigator.onLine ? `Unable to connect to the server. It may be temporarily down.` : `Network error: Unable to connect. Please check your internet connection and try again.` } : err);
|
|
141
|
+
});
|
|
142
|
+
});
|
|
143
|
+
}
|
|
144
|
+
return new Promise((resolve, reject) => {
|
|
145
|
+
reject();
|
|
146
|
+
});
|
|
147
|
+
};
|
|
148
|
+
export const withGet = async (uri, timeout = 60, ignoreKind = false) => {
|
|
149
|
+
return new Promise((resolve, reject) => {
|
|
150
|
+
axios
|
|
151
|
+
.get(uri, { timeout: timeout * 1000 })
|
|
152
|
+
.then((resp) => {
|
|
153
|
+
if (resp.data && (ignoreKind || "kind" in resp.data)) {
|
|
154
|
+
resolve(resp.data);
|
|
155
|
+
}
|
|
156
|
+
else {
|
|
157
|
+
reject(resp.data);
|
|
158
|
+
}
|
|
159
|
+
})
|
|
160
|
+
.catch((err) => {
|
|
161
|
+
if (err?.response?.data)
|
|
162
|
+
reject(err.response.data);
|
|
163
|
+
else
|
|
164
|
+
reject(err.code === `ERR_NETWORK`
|
|
165
|
+
? {
|
|
166
|
+
error: err.code,
|
|
167
|
+
message: navigator.onLine
|
|
168
|
+
? `Unable to connect to the server. It may be temporarily down.`
|
|
169
|
+
: `Network error: Unable to connect. Please check your internet connection and try again.`,
|
|
170
|
+
}
|
|
171
|
+
: err);
|
|
172
|
+
});
|
|
173
|
+
});
|
|
174
|
+
};
|
|
175
|
+
export const withTime = (fun) => {
|
|
176
|
+
const start = new Date().getTime();
|
|
177
|
+
const result = fun();
|
|
178
|
+
const end = new Date().getTime();
|
|
179
|
+
return {
|
|
180
|
+
result,
|
|
181
|
+
executionTime: end - start
|
|
182
|
+
};
|
|
183
|
+
};
|
|
184
|
+
export const time = (stamp, format) => {
|
|
185
|
+
return stamp ?
|
|
186
|
+
moment.unix(+stamp / 1000).format(format || `YYYY-MM-DD HH:mm:ss`)
|
|
187
|
+
: moment().format(format || `YYYY-MM-DD HH:mm:ss`);
|
|
188
|
+
};
|
|
189
|
+
export const timeSince = (stamp) => moment(stamp).fromNow();
|
|
190
|
+
export const arrayRand = (arr) => arr[Math.floor(Math.random() * arr.length)];
|
|
191
|
+
export const formatNumber = ({ number, locale = 'en-US', style = `decimal`, decimal = 2, currency }) => {
|
|
192
|
+
if (style === 'currency' && !currency) {
|
|
193
|
+
throw new TypeError('Currency code is required with currency style.');
|
|
194
|
+
}
|
|
195
|
+
if (currency) {
|
|
196
|
+
const { code, style: currencyStyle, symbol } = currency;
|
|
197
|
+
const out = new Intl.NumberFormat(locale, {
|
|
198
|
+
style: `currency`,
|
|
199
|
+
currency: code,
|
|
200
|
+
currencyDisplay: currencyStyle,
|
|
201
|
+
minimumFractionDigits: +number % 1 > 0 ? decimal : 0,
|
|
202
|
+
maximumFractionDigits: +number % 1 > 0 ? decimal : 0
|
|
203
|
+
}).format(+number);
|
|
204
|
+
return symbol ? out.replace(new RegExp(`\\${code}`, 'g'), symbol) : out;
|
|
205
|
+
}
|
|
206
|
+
return new Intl.NumberFormat(locale, {
|
|
207
|
+
style,
|
|
208
|
+
minimumFractionDigits: +number % 1 > 0 ? 2 : 0,
|
|
209
|
+
maximumFractionDigits: +number % 1 > 0 ? 2 : 0
|
|
210
|
+
}).format(+number);
|
|
211
|
+
};
|
|
212
|
+
export const formatSize = (bytes) => {
|
|
213
|
+
const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB'];
|
|
214
|
+
const _bytes = `string` == typeof bytes ? parseFloat(bytes) : bytes;
|
|
215
|
+
if (_bytes == 0)
|
|
216
|
+
return '0 Byte';
|
|
217
|
+
const _i = Math.floor(Math.log(_bytes) / Math.log(1024));
|
|
218
|
+
const i = `string` == typeof _i ? parseInt(_i) : _i;
|
|
219
|
+
const nx = _bytes / Math.pow(1024, i);
|
|
220
|
+
return nx.toFixed(2) + ' ' + sizes[i];
|
|
221
|
+
};
|
|
222
|
+
export const copyToClipboard = (text) => {
|
|
223
|
+
if (navigator.clipboard && navigator.clipboard.writeText) {
|
|
224
|
+
return navigator.clipboard.writeText(text);
|
|
225
|
+
}
|
|
226
|
+
else {
|
|
227
|
+
return new Promise((resolve, reject) => {
|
|
228
|
+
const textarea = document.createElement("textarea");
|
|
229
|
+
textarea.value = text;
|
|
230
|
+
textarea.style.position = "fixed"; // Prevent scrolling to bottom of page in MS Edge.
|
|
231
|
+
document.body.appendChild(textarea);
|
|
232
|
+
textarea.focus();
|
|
233
|
+
textarea.select();
|
|
234
|
+
try {
|
|
235
|
+
document.execCommand("copy");
|
|
236
|
+
resolve(`Copied to clipboard`);
|
|
237
|
+
}
|
|
238
|
+
catch (err) {
|
|
239
|
+
// console.error("Fallback: Oops, unable to copy", err);
|
|
240
|
+
reject(err);
|
|
241
|
+
}
|
|
242
|
+
document.body.removeChild(textarea);
|
|
243
|
+
});
|
|
244
|
+
}
|
|
245
|
+
};
|
|
246
|
+
export const natsort = (options = {
|
|
247
|
+
direction: SORT.Asc,
|
|
248
|
+
caseSensitive: false,
|
|
249
|
+
}) => {
|
|
250
|
+
const ore = /^0/;
|
|
251
|
+
const sre = /\s+/g;
|
|
252
|
+
const tre = /^\s+|\s+$/g;
|
|
253
|
+
// unicode
|
|
254
|
+
const ure = /[^\x00-\x80]/;
|
|
255
|
+
// hex
|
|
256
|
+
const hre = /^0x[0-9a-f]+$/i;
|
|
257
|
+
// numeric
|
|
258
|
+
const nre = /(0x[\da-fA-F]+|(^[\+\-]?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?(?=\D|\s|$))|\d+)/g;
|
|
259
|
+
// datetime
|
|
260
|
+
const dre = /(^([\w ]+,?[\w ]+)?[\w ]+,?[\w ]+\d+:\d+(:\d+)?[\w ]?|^\d{1,4}[\/\-]\d{1,4}[\/\-]\d{1,4}|^\w+, \w+ \d+, \d{4})/; // tslint:disable-line
|
|
261
|
+
const GREATER = options.direction == SORT.Desc ? -1 : 1;
|
|
262
|
+
const SMALLER = -GREATER;
|
|
263
|
+
const _normalize = !options.caseSensitive
|
|
264
|
+
? (s) => s.toString().toLowerCase().replace(tre, '')
|
|
265
|
+
: (s) => (`${s}`).replace(tre, '');
|
|
266
|
+
const _tokenize = (s) => {
|
|
267
|
+
return s.replace(nre, '\0$1\0')
|
|
268
|
+
.replace(/\0$/, '')
|
|
269
|
+
.replace(/^\0/, '')
|
|
270
|
+
.split('\0');
|
|
271
|
+
};
|
|
272
|
+
const _parse = (s, l) => {
|
|
273
|
+
return (!s.match(ore) || l === 1) &&
|
|
274
|
+
parseFloat(s)
|
|
275
|
+
|| s.replace(sre, ' ').replace(tre, '')
|
|
276
|
+
|| 0;
|
|
277
|
+
};
|
|
278
|
+
return function (a, b) {
|
|
279
|
+
const aa = _normalize(a);
|
|
280
|
+
const bb = _normalize(b);
|
|
281
|
+
if (!aa && !bb) {
|
|
282
|
+
return 0;
|
|
283
|
+
}
|
|
284
|
+
if (!aa && bb) {
|
|
285
|
+
return SMALLER;
|
|
286
|
+
}
|
|
287
|
+
if (aa && !bb) {
|
|
288
|
+
return GREATER;
|
|
289
|
+
}
|
|
290
|
+
const aArr = _tokenize(aa);
|
|
291
|
+
const bArr = _tokenize(bb);
|
|
292
|
+
// hex or date detection
|
|
293
|
+
const aHex = aa.match(hre);
|
|
294
|
+
const bHex = bb.match(hre);
|
|
295
|
+
const av = (aHex && bHex) ? parseInt(aHex[0], 16) : (aArr.length !== 1 && Date.parse(aa));
|
|
296
|
+
const bv = (aHex && bHex)
|
|
297
|
+
? parseInt(bHex[0], 16)
|
|
298
|
+
: av && bb.match(dre) && Date.parse(bb) || null;
|
|
299
|
+
// try and sort Hex codes or Dates
|
|
300
|
+
if (bv) {
|
|
301
|
+
if (av === bv) {
|
|
302
|
+
return 0;
|
|
303
|
+
}
|
|
304
|
+
if (typeof av === 'number' && typeof bv === 'number' && av < bv) {
|
|
305
|
+
return SMALLER;
|
|
306
|
+
}
|
|
307
|
+
if (typeof av === 'number' && av > bv) {
|
|
308
|
+
return GREATER;
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
const al = aArr.length;
|
|
312
|
+
const bl = bArr.length;
|
|
313
|
+
// handle numeric strings and default strings
|
|
314
|
+
for (let i = 0, l = Math.max(al, bl); i < l; i += 1) {
|
|
315
|
+
const af = _parse(aArr[i] || '', al);
|
|
316
|
+
const bf = _parse(bArr[i] || '', bl);
|
|
317
|
+
if (isNaN(af) !== isNaN(bf)) {
|
|
318
|
+
return isNaN(af) ? GREATER : SMALLER;
|
|
319
|
+
}
|
|
320
|
+
if (ure.test(af + bf) && af.localeCompare) {
|
|
321
|
+
const comp = af.localeCompare(bf);
|
|
322
|
+
if (comp > 0) {
|
|
323
|
+
return GREATER;
|
|
324
|
+
}
|
|
325
|
+
if (comp < 0) {
|
|
326
|
+
return SMALLER;
|
|
327
|
+
}
|
|
328
|
+
if (i === l - 1) {
|
|
329
|
+
return 0;
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
if (af < bf) {
|
|
333
|
+
return SMALLER;
|
|
334
|
+
}
|
|
335
|
+
if (af > bf) {
|
|
336
|
+
return GREATER;
|
|
337
|
+
}
|
|
338
|
+
if (`${af}` < `${bf}`) {
|
|
339
|
+
return SMALLER;
|
|
340
|
+
}
|
|
341
|
+
if (`${af}` > `${bf}`) {
|
|
342
|
+
return GREATER;
|
|
343
|
+
}
|
|
344
|
+
}
|
|
345
|
+
return 0;
|
|
346
|
+
};
|
|
347
|
+
};
|
|
348
|
+
export const camelCase = (str, ucf = false) => {
|
|
349
|
+
return str
|
|
350
|
+
.toLowerCase()
|
|
351
|
+
.split(/[^a-zA-Z0-9]+/) // Split by any non-alphanumeric character
|
|
352
|
+
.map((word, index) => index === 0
|
|
353
|
+
? ucf ? ucfirst(word) : word
|
|
354
|
+
: ucfirst(word))
|
|
355
|
+
.join('');
|
|
356
|
+
};
|
|
357
|
+
export const camelCaseToDash = (str) => str.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase();
|
|
358
|
+
export const clamp = (value, min, max) => {
|
|
359
|
+
return Math.min(Math.max(value, min), max);
|
|
360
|
+
};
|
|
361
|
+
export const slugify = (text, separator = "-") => {
|
|
362
|
+
if (undefined == text) {
|
|
363
|
+
console.log(text, `is undefined`);
|
|
364
|
+
return ``;
|
|
365
|
+
}
|
|
366
|
+
return text
|
|
367
|
+
.normalize("NFKD") // Normalize accents (e.g., é → e)
|
|
368
|
+
.replace(/[\u0300-\u036f]/g, "") // Remove diacritic marks
|
|
369
|
+
.toLowerCase()
|
|
370
|
+
.replace(/[^a-z0-9\p{L}\p{N}]+/gu, separator) // Keep letters/numbers from all languages
|
|
371
|
+
.replace(new RegExp(`\\${separator}{2,}`, "g"), separator) // Remove duplicate separators
|
|
372
|
+
.replace(new RegExp(`^\\${separator}|\\${separator}$`, "g"), ""); // Trim separators from ends
|
|
373
|
+
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
// Hex color regex (#RGB, #RRGGBB)
|
|
2
|
+
export const hexColorRegex = /^#([A-Fa-f0-9]{3}){1,2}$/;
|
|
3
|
+
// RGBA color regex (rgba(255, 255, 255, 1))
|
|
4
|
+
export const rgbaColorRegex = /^rgba?\(\s*(\d{1,3})\s*,\s*(\d{1,3})\s*,\s*(\d{1,3})\s*(,\s*((0|1|0?\.\d+)\s*))?\)$/;
|
|
5
|
+
// HSL color regex (hsl(360, 100%, 100%))
|
|
6
|
+
export const hslColorRegex = /^hsl\(\s*(\d{1,3})\s*,\s*(\d{1,3})%\s*,\s*(\d{1,3})%\s*\)$/;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export type dynamic = {
|
|
2
|
+
[x: string]: any;
|
|
3
|
+
};
|
|
4
|
+
export interface FormatNumberParams {
|
|
5
|
+
number: number | string;
|
|
6
|
+
locale: string;
|
|
7
|
+
style?: `decimal` | `currency` | `percent`;
|
|
8
|
+
decimal?: number;
|
|
9
|
+
currency?: {
|
|
10
|
+
code: string;
|
|
11
|
+
style: `symbol` | `code` | `name`;
|
|
12
|
+
symbol?: string;
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
export declare enum SORT {
|
|
16
|
+
Asc = "ASC",
|
|
17
|
+
Desc = "DESC"
|
|
18
|
+
}
|
|
19
|
+
export type sortOptions = {
|
|
20
|
+
direction?: SORT;
|
|
21
|
+
caseSensitive?: boolean;
|
|
22
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
declare class withGlobals {
|
|
2
|
+
_: any;
|
|
3
|
+
constructor(value: any);
|
|
4
|
+
isTypeof(v: any): boolean;
|
|
5
|
+
isFunction(): boolean;
|
|
6
|
+
isArray(): boolean;
|
|
7
|
+
isNull(): boolean;
|
|
8
|
+
isString(): boolean;
|
|
9
|
+
isNumber(): boolean;
|
|
10
|
+
isObject(): boolean;
|
|
11
|
+
isEmpty(): boolean;
|
|
12
|
+
isEmail(): boolean;
|
|
13
|
+
isUrl(): boolean;
|
|
14
|
+
toLowerCase(): this;
|
|
15
|
+
equals(v: any): boolean;
|
|
16
|
+
ucfirst(): this;
|
|
17
|
+
formatString(v: string | number, ...vv: (string | number)[]): this;
|
|
18
|
+
camelCase(): this;
|
|
19
|
+
value(): any;
|
|
20
|
+
valueOf(): any;
|
|
21
|
+
toString(): string;
|
|
22
|
+
[Symbol.toPrimitive](hint: string): string | number | boolean;
|
|
23
|
+
}
|
|
24
|
+
declare const _: <T>(value: T) => withGlobals;
|
|
25
|
+
export default _;
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
class withGlobals {
|
|
2
|
+
_;
|
|
3
|
+
constructor(value) {
|
|
4
|
+
this._ = value;
|
|
5
|
+
}
|
|
6
|
+
isTypeof(v) {
|
|
7
|
+
return typeof this._ === typeof v;
|
|
8
|
+
}
|
|
9
|
+
isFunction() {
|
|
10
|
+
return typeof this._ === "function";
|
|
11
|
+
}
|
|
12
|
+
isArray() {
|
|
13
|
+
return Array.isArray(this._);
|
|
14
|
+
}
|
|
15
|
+
isNull() {
|
|
16
|
+
return this._ === null;
|
|
17
|
+
}
|
|
18
|
+
isString() {
|
|
19
|
+
return typeof this._ === "string";
|
|
20
|
+
}
|
|
21
|
+
isNumber() {
|
|
22
|
+
return /^[+-]?\d+(\.\d+)?$/.test(this._);
|
|
23
|
+
}
|
|
24
|
+
isObject() {
|
|
25
|
+
return typeof this._ === "object" && !Array.isArray(this._) && this._ !== null;
|
|
26
|
+
}
|
|
27
|
+
isEmpty() {
|
|
28
|
+
if (Array.isArray(this._))
|
|
29
|
+
return this._.length === 0;
|
|
30
|
+
if (typeof this._ === "object" && this._ !== null)
|
|
31
|
+
return Object.keys(this._).length === 0;
|
|
32
|
+
return this._ === "" || String(this._).length === 0;
|
|
33
|
+
}
|
|
34
|
+
isEmail() {
|
|
35
|
+
return typeof this._ === "string" && /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(this._);
|
|
36
|
+
}
|
|
37
|
+
isUrl() {
|
|
38
|
+
return typeof this._ === "string" && /^(https?:\/\/)?(www\.)?([a-zA-Z0-9-]+\.)+[a-zA-Z]{2,}(\/[^\s]*)?$/.test(this._);
|
|
39
|
+
}
|
|
40
|
+
toLowerCase() {
|
|
41
|
+
this._ = typeof this._ === "string" ? this._.toLowerCase() : String(this._).toLowerCase();
|
|
42
|
+
return this;
|
|
43
|
+
}
|
|
44
|
+
equals(v) { return this._ === v; }
|
|
45
|
+
ucfirst() {
|
|
46
|
+
this._ = typeof this._ === "string" ? this._.charAt(0).toUpperCase() + this._.slice(1) : this._;
|
|
47
|
+
return this;
|
|
48
|
+
}
|
|
49
|
+
formatString(v, ...vv) {
|
|
50
|
+
if (typeof this._ !== "string")
|
|
51
|
+
this._ = "";
|
|
52
|
+
const values = [v, ...vv];
|
|
53
|
+
this._ = this._.replace(/%(\d+)/g, (inp, index) => values[Number(index)]?.toString() || `%${index}`);
|
|
54
|
+
return this;
|
|
55
|
+
}
|
|
56
|
+
camelCase() {
|
|
57
|
+
this._ = typeof this._ === "string"
|
|
58
|
+
? this._
|
|
59
|
+
.split(/[^a-zA-Z0-9]+/)
|
|
60
|
+
.map((word, index) => index === 0 ? word : word.charAt(0).toUpperCase() + word.slice(1))
|
|
61
|
+
.join("")
|
|
62
|
+
: this._;
|
|
63
|
+
return this;
|
|
64
|
+
}
|
|
65
|
+
value() { return this._; }
|
|
66
|
+
valueOf() { return this._; }
|
|
67
|
+
toString() { return String(this._); }
|
|
68
|
+
[Symbol.toPrimitive](hint) {
|
|
69
|
+
if (hint === "number")
|
|
70
|
+
return Number(this._);
|
|
71
|
+
if (hint === "boolean")
|
|
72
|
+
return Boolean(this._);
|
|
73
|
+
return String(this._);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
const _ = (value) => new withGlobals(value);
|
|
77
|
+
export default _;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2024.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.esnext.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2024.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.es2024.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.esnext.array.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.8.2/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/types-react@19.0.0-rc.0/node_modules/types-react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/types-react@19.0.0-rc.0/node_modules/types-react/index.d.ts","../../../node_modules/.pnpm/types-react@19.0.0-rc.0/node_modules/types-react/jsx-runtime.d.ts","../src/colors.ts","../../../node_modules/.pnpm/axios@1.8.4/node_modules/axios/index.d.ts","../../../node_modules/.pnpm/hashids@2.3.0/node_modules/hashids/esm/util.d.ts","../../../node_modules/.pnpm/hashids@2.3.0/node_modules/hashids/esm/hashids.d.ts","../../../node_modules/.pnpm/@types+js-cookie@3.0.6/node_modules/@types/js-cookie/index.d.ts","../../../node_modules/.pnpm/@types+js-cookie@3.0.6/node_modules/@types/js-cookie/index.d.mts","../../../node_modules/.pnpm/@types+md5@2.3.5/node_modules/@types/md5/index.d.ts","../../../node_modules/.pnpm/moment@2.30.1/node_modules/moment/ts3.1-typings/moment.d.ts","../src/regexps.ts","../src/types.ts","../src/withglobals.ts","../src/index.ts","../../../node_modules/.pnpm/@types+estree@1.0.6/node_modules/@types/estree/index.d.ts","../../../node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema/index.d.ts","../../../node_modules/.pnpm/@types+eslint@9.6.1/node_modules/@types/eslint/use-at-your-own-risk.d.ts","../../../node_modules/.pnpm/@types+eslint@9.6.1/node_modules/@types/eslint/index.d.ts","../../../node_modules/.pnpm/@types+eslint-scope@3.7.7/node_modules/@types/eslint-scope/index.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/file.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/filereader.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/dom-events.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+assert@1.5.11/node_modules/@types/assert/index.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/globals.global.d.ts","../../../node_modules/.pnpm/@types+node@22.4.0/node_modules/@types/node/index.d.ts","../../../node_modules/.pnpm/@types+react@19.0.8/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/@types+react@19.0.8/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/types-react-dom@19.0.0-rc.0/node_modules/types-react-dom/index.d.ts"],"fileIdsList":[[97,100],[97,98,99],[100],[89],[102],[143],[144,149,179],[145,150,156,157,164,176,187],[145,146,156,164],[147,188],[148,149,157,165],[149,176,184],[150,152,156,164],[143,151],[152,153],[156],[154,156],[143,156],[156,157,158,176,187],[156,157,158,172,176,179],[141,144,192],[152,156,159,164,176,187],[156,157,159,160,164,176,184,187],[159,161,176,184,187],[102,103,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194],[156,162],[163,187,192],[152,156,164,176],[165],[166],[143,167],[102,103,143,144,145,146,147,148,149,150,151,152,153,154,156,157,158,159,160,161,162,163,164,165,166,167,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193],[170],[171],[156,172,173],[172,174,188,190],[144,156,176,177,178,179],[144,176,178],[176,177],[179],[180],[102,176],[156,182,183],[182,183],[149,164,176,184],[185],[164,186],[144,159,171,187],[149,188],[176,189],[163,190],[191],[144,149,156,158,167,176,187,190,192],[176,193],[82,196],[87],[197],[81,82],[83],[113,117,187],[113,176,187],[108],[110,113,184,187],[164,184],[195],[108,195],[110,113,164,187],[105,106,109,112,144,156,176,187],[113,120],[105,111],[113,134,135],[109,113,144,179,187,195],[144,195],[134,144,195],[107,108,195],[113],[107,108,109,110,111,112,113,114,115,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,135,136,137,138,139,140],[113,128],[113,120,121],[111,113,121,122],[112],[105,108,113],[113,117,121,122],[117],[111,113,116,187],[105,110,113,120],[144,176],[108,113,134,144,192,195],[84],[84,85,86,88,90,91,92,93,94,95]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"b2ccad1f4b5cb1c8bdcedf7ec60bd0ea87c3fb1a7eefea56d31bbb2dc42f318f","impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"fb9e772d318389fa4c36e9fdb6ab923eee958df961ef73957f49c6b33477b51c","signature":"555f6e85991aa32c011c8cc356d9d3dd401d5d8718bd69753d56ece54cbcd3ea"},{"version":"331594cfe112a28054912754e428aeb2090200e06bb3477720c62eb9c4676242","impliedFormat":99},{"version":"a765c36fad0f51580a2ac3e445877f86ba44e7ddcf4778be6a1818906909fbd0","impliedFormat":99},{"version":"b6c8afee5ff68c89eff21066f34811cacf19fc513d7fb314f40aeed1132b0ce6","impliedFormat":99},{"version":"117816592ad26d78651f5e8322ea571fd8d413d8d3b7d79944d27468e2636989","impliedFormat":1},{"version":"bb731532d0560146363f2bda4c20607affb087955318be50e1a814e1231febcf","impliedFormat":99},{"version":"11350a3fc4f1da72d75037021afec46969e8b9e1587e58036743985d76b02754","impliedFormat":1},{"version":"4051f6311deb0ce6052329eeb1cd4b1b104378fe52f882f483130bea75f92197","impliedFormat":1},{"version":"cf252c6f487657ced3c6f1988af6b65d10b9facce2a0d362bef1054dcc6ccab4","signature":"0eb5a359808a1210c43cbe9d139c7e7b998d17ed97111777b6a698bca3cd5c0f"},{"version":"3b428add5ba6b3ba4beee283ff956e3d9c2e1b86b2ee022c25f3e6b1dfeee218","signature":"fb33ed2cd7e5cab3913f46f354d1b8a02e2a9cdde58bd16f2c202254b4bd645e"},{"version":"cb5086d83d924e9e5961c5996b9cf9184da9bcdda4ca7b125f1cc8dd6741a08d","signature":"f95f67a92ce9ff3eeb87d4ab988003e76c0a906dd8b927083a165132342cf55b"},{"version":"ceac65f85f98a8eb621106ac1787dbd8fac22c0fbd312513b559d849b93bbde1","signature":"a8c5d947de0736418fcd24b5811e037ff1ede4cd3924f80619b7bf6a17533fdb"},{"version":"785b9d575b49124ce01b46f5b9402157c7611e6532effa562ac6aebec0074dfc","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"a4a39b5714adfcadd3bbea6698ca2e942606d833bde62ad5fb6ec55f5e438ff8","impliedFormat":1},{"version":"bbc1d029093135d7d9bfa4b38cbf8761db505026cc458b5e9c8b74f4000e5e75","impliedFormat":1},{"version":"1f68ab0e055994eb337b67aa87d2a15e0200951e9664959b3866ee6f6b11a0fe","impliedFormat":1},{"version":"e142fda89ed689ea53d6f2c93693898464c7d29a0ae71c6dc8cdfe5a1d76c775","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","impliedFormat":1},{"version":"93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b0007d2025c46c15c1b67f107aea10349b79e436bcf5e6690554df3f7232de0f","affectsGlobalScope":true,"impliedFormat":1},{"version":"db3ec8993b7596a4ef47f309c7b25ee2505b519c13050424d9c34701e5973315","impliedFormat":1},{"version":"5a38909344f43b30b74c90623f83f4412344e992f2ff158e3b6d3725af18dc02","affectsGlobalScope":true,"impliedFormat":1},{"version":"af49b066a76ce26673fe49d1885cc6b44153f1071ed2d952f2a90fccba1095c9","impliedFormat":1},{"version":"f22fd1dc2df53eaf5ce0ff9e0a3326fc66f880d6a652210d50563ae72625455f","impliedFormat":1},{"version":"3ddbdb519e87a7827c4f0c4007013f3628ca0ebb9e2b018cf31e5b2f61c593f1","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"6d498d4fd8036ea02a4edcae10375854a0eb1df0496cf0b9d692577d3c0fd603","affectsGlobalScope":true,"impliedFormat":1},{"version":"24642567d3729bcc545bacb65ee7c0db423400c7f1ef757cab25d05650064f98","impliedFormat":1},{"version":"fd09b892597ab93e7f79745ce725a3aaf6dd005e8db20f0c63a5d10984cba328","impliedFormat":1},{"version":"a3be878ff1e1964ab2dc8e0a3b67087cf838731c7f3d8f603337e7b712fdd558","impliedFormat":1},{"version":"5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","impliedFormat":1},{"version":"9be74296ee565af0c12d7071541fdd23260f53c3da7731fb6361f61150a791f6","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f501a53b94ba382d9ba396a5c486969a3abc68309828fa67f916035f5d37fe2b","affectsGlobalScope":true,"impliedFormat":1},{"version":"aa658b5d765f630c312ac9202d110bbaf2b82d180376457f0a9d57b42629714a","impliedFormat":1},{"version":"312ac7cbd070107766a9886fd27f9faad997ef57d93fdfb4095df2c618ac8162","impliedFormat":1},{"version":"bcfcff784a59db3f323c25cea5ae99a903ca9292c060f2c7e470ea73aaf71b44","impliedFormat":1},{"version":"672ad3045f329e94002256f8ed460cfd06173a50c92cde41edaadfacffd16808","impliedFormat":1},{"version":"64da4965d1e0559e134d9c1621ae400279a216f87ed00c4cce4f2c7c78021712","impliedFormat":1},{"version":"ddbf3aac94f85dbb8e4d0360782e60020da75a0becfc0d3c69e437c645feb30f","impliedFormat":1},{"version":"0166fce1204d520fdfd6b5febb3cda3deee438bcbf8ce9ffeb2b1bcde7155346","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8b13eab85b532285031b06a971fa051bf0175d8fff68065a24a6da9c1c986cf","impliedFormat":1},{"version":"50c382ba1827988c59aa9cc9d046e386d55d70f762e9e352e95ee8cb7337cdb8","impliedFormat":1},{"version":"2178ab4b68402d1de2dda199d3e4a55f7200e3334f5a9727fbd9d16975cdf75f","impliedFormat":1},{"version":"21d7e87f271e72d02f8d167edc902f90b04525edc7918f00f01dd0bd00599f7e","affectsGlobalScope":true,"impliedFormat":1},{"version":"afbe82d2b4857d674686255c44c8590dfe0b40927713876f875fdf4960473441","impliedFormat":1},{"version":"1785f3ca422887c49159986725420bd5764117c8f1fe70985b5e36d278158e09","affectsGlobalScope":true,"impliedFormat":1},{"version":"a215554477f7629e3dcbc8cde104bec036b78673650272f5ffdc5a2cee399a0a","impliedFormat":1},{"version":"c3497fc242aabfedcd430b5932412f94f157b5906568e737f6a18cc77b36a954","impliedFormat":1},{"version":"cdc1de3b672f9ef03ff15c443aa1b631edca35b6ae6970a7da6400647ff74d95","impliedFormat":1},{"version":"139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","impliedFormat":1},{"version":"bf01fdd3b93cf633b3f7420718457af19c57ab8cbfea49268df60bae2e84d627","impliedFormat":1},{"version":"15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","impliedFormat":1},{"version":"65b39cc6b610a4a4aecc321f6efb436f10c0509d686124795b4c36a5e915b89e","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"3c1f19c7abcda6b3a4cf9438a15c7307a080bd3b51dfd56b198d9f86baf19447","impliedFormat":1},{"version":"d3edb86744e2c19f2c1503849ac7594a5e06024f2451bacae032390f2e20314a","impliedFormat":1},{"version":"52ff13ed3bf7d9763eb6b7ad0545681f9fa591258d1df778256469b516047edb","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a3e61347b8f80aa5af532094498bceb0c0b257b25a6aa8ab4880fd6ed57c95a","affectsGlobalScope":true,"impliedFormat":1},{"version":"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","impliedFormat":1},{"version":"950f6810f7c80e0cffefcf1bcc6ade3485c94394720e334c3c2be3c16b6922fb","impliedFormat":1},{"version":"5475df7cfc493a08483c9d7aa61cc04791aecba9d0a2efc213f23c4006d4d3cd","impliedFormat":1},{"version":"000720870b275764c65e9f28ac97cc9e4d9e4a36942d4750ca8603e416e9c57c","impliedFormat":1},{"version":"54412c70bacb9ed547ed6caae8836f712a83ccf58d94466f3387447ec4e82dc3","affectsGlobalScope":true,"impliedFormat":1},{"version":"e74e7b0baa7a24f073080091427d36a75836d584b9393e6ac2b1daf1647fe65a","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c48e931a72f6971b5add7fdb1136be1d617f124594e94595f7114af749395e0","impliedFormat":1},{"version":"478eb5c32250678a906d91e0529c70243fc4d75477a08f3da408e2615396f558","impliedFormat":1},{"version":"e686a88c9ee004c8ba12ffc9d674ca3192a4c50ed0ca6bd5b2825c289e2b2bfe","impliedFormat":1},{"version":"98d547613610452ac9323fb9ec4eafc89acab77644d6e23105b3c94913f712b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"4423fb3d6abe6eefb8d7f79eb2df9510824a216ec1c6feee46718c9b18e6d89f","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a42be67ed1ddaec743582f41fc219db96a1b69719fccac6d1464321178d610fc","impliedFormat":1},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true,"impliedFormat":1},{"version":"51409be337d5cdf32915ace99a4c49bf62dbc124a49135120dfdff73236b0bad","impliedFormat":1},{"version":"7379ec8065e7cab3cfefee6ddcc1224f6011a1a235e30c0a1e48a044c2b8af37","impliedFormat":1}],"root":[85,[93,96]],"options":{"composite":true,"declaration":true,"downlevelIteration":true,"esModuleInterop":true,"jsx":4,"module":99,"noFallthroughCasesInSwitch":true,"outDir":"./esm","removeComments":false,"rootDir":"../src","skipLibCheck":true,"sourceMap":false,"strict":true,"stripInternal":true,"target":99},"referencedMap":[[101,1],[100,2],[99,3],[90,4],[102,5],[103,5],[143,6],[144,7],[145,8],[146,9],[147,10],[148,11],[149,12],[150,13],[151,14],[152,15],[153,15],[155,16],[154,17],[156,18],[157,19],[158,20],[142,21],[159,22],[160,23],[161,24],[195,25],[162,26],[163,27],[164,28],[165,29],[166,30],[167,31],[169,32],[170,33],[171,34],[172,35],[173,35],[174,36],[176,37],[178,38],[177,39],[179,40],[180,41],[181,42],[182,43],[183,44],[184,45],[185,46],[186,47],[187,48],[188,49],[189,50],[190,51],[191,52],[192,53],[193,54],[197,55],[88,56],[198,57],[83,58],[84,59],[120,60],[130,61],[119,60],[140,62],[111,63],[110,64],[139,65],[133,66],[138,67],[113,68],[127,69],[112,70],[136,71],[108,72],[107,73],[137,74],[109,75],[114,76],[118,76],[141,77],[131,78],[122,79],[123,80],[125,81],[121,82],[124,83],[134,65],[116,84],[117,85],[126,86],[106,87],[129,78],[128,76],[135,88],[85,89],[96,90],[93,89],[94,89],[95,89]],"latestChangedDtsFile":"./esm/index.d.ts","version":"5.8.2"}
|