Erster Docker-Stand

This commit is contained in:
Ali
2026-02-20 16:06:40 +09:00
commit f31e2e8ed3
8818 changed files with 1605323 additions and 0 deletions

1
_node_modules/remeda/dist/isSymbol.cjs.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"isSymbol.cjs","names":[],"sources":["../src/isSymbol.ts"],"sourcesContent":["import type { NarrowedTo } from \"./internal/types/NarrowedTo\";\n\n/**\n * A function that checks if the passed parameter is a symbol and narrows its type accordingly.\n *\n * @param data - The variable to check.\n * @returns True if the passed input is a symbol, false otherwise.\n * @signature\n * R.isSymbol(data)\n * @example\n * R.isSymbol(Symbol('foo')) //=> true\n * R.isSymbol(1) //=> false\n * @category Guard\n */\nexport function isSymbol<T>(data: T | symbol): data is NarrowedTo<T, symbol> {\n return typeof data === \"symbol\";\n}\n"],"mappings":"AAcA,SAAgB,EAAY,EAAiD,CAC3E,OAAO,OAAO,GAAS"}