Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

13
node_modules/es-toolkit/dist/compat/string/trim.mjs generated vendored Normal file
View File

@@ -0,0 +1,13 @@
import { trim as trim$1 } from "../../string/trim.mjs";
//#region src/compat/string/trim.ts
function trim(str, chars, guard) {
if (str == null) return "";
if (guard != null || chars == null) return str.toString().trim();
switch (typeof chars) {
case "object": if (Array.isArray(chars)) return trim$1(str, chars.flatMap((x) => x.toString().split("")));
else return trim$1(str, chars.toString().split(""));
default: return trim$1(str, chars.toString().split(""));
}
}
//#endregion
export { trim };