first commit

This commit is contained in:
Myk
2025-07-31 23:47:20 +03:00
commit 2186b278a0
5149 changed files with 537218 additions and 0 deletions

1
node_modules/js-sdsl/dist/esm/utils/checkObject.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export {};

5
node_modules/js-sdsl/dist/esm/utils/checkObject.js generated vendored Normal file
View File

@@ -0,0 +1,5 @@
export default function checkObject(t) {
var e = typeof t;
return e === "object" && t !== null || e === "function";
}
//# sourceMappingURL=checkObject.js.map

View File

@@ -0,0 +1 @@
{"version":3,"sources":["../../src/utils/checkObject.ts","utils/checkObject.js"],"names":["checkObject","key","t"],"mappings":"eAMc,SAAUA,YAAeC;IACrC,IAAMC,WAAWD;IACjB,OAAQC,MAAM,YAAYD,MAAQ,QAASC,MAAM;ACCnD","file":"checkObject.js","sourcesContent":["/**\n * @description Determine whether the type of key is `object`.\n * @param key - The key want to check.\n * @returns Whether the type of key is `object`.\n * @internal\n */\nexport default function checkObject<T>(key: T) {\n const t = typeof key;\n return (t === 'object' && key !== null) || t === 'function';\n}\n","/**\n * @description Determine whether the type of key is `object`.\n * @param key - The key want to check.\n * @returns Whether the type of key is `object`.\n * @internal\n */\nexport default function checkObject(key) {\n var t = typeof key;\n return (t === 'object' && key !== null) || t === 'function';\n}\n"]}

1
node_modules/js-sdsl/dist/esm/utils/throwError.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export {};

4
node_modules/js-sdsl/dist/esm/utils/throwError.js generated vendored Normal file
View File

@@ -0,0 +1,4 @@
export function throwIteratorAccessError() {
throw new RangeError("Iterator access denied!");
}
//# sourceMappingURL=throwError.js.map

View File

@@ -0,0 +1 @@
{"version":3,"sources":["../../src/utils/throwError.ts","utils/throwError.js"],"names":["throwIteratorAccessError","RangeError"],"mappings":"OAIM,SAAUA;IACd,MAAM,IAAIC,WAAW;ACCvB","file":"throwError.js","sourcesContent":["/**\n * @description Throw an iterator access error.\n * @internal\n */\nexport function throwIteratorAccessError() {\n throw new RangeError('Iterator access denied!');\n}\n","/**\n * @description Throw an iterator access error.\n * @internal\n */\nexport function throwIteratorAccessError() {\n throw new RangeError('Iterator access denied!');\n}\n"]}