first commit

This commit is contained in:
Ichitux
2026-04-05 03:08:53 +02:00
commit 1082d36c12
28015 changed files with 3767672 additions and 0 deletions

1
node_modules/remeda/dist/isNullish.cjs.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"isNullish.cjs","names":[],"sources":["../src/isNullish.ts"],"sourcesContent":["import type { NarrowedTo } from \"./internal/types/NarrowedTo\";\n\n/**\n * A function that checks if the passed parameter is either `null` or\n * `undefined` and narrows its type accordingly.\n *\n * @param data - The variable to check.\n * @returns True if the passed input is either `null` or `undefined`, false\n * otherwise.\n * @signature\n * R.isNullish(data)\n * @example\n * R.isNullish(undefined) //=> true\n * R.isNullish(null) //=> true\n * R.isNullish('somethingElse') //=> false\n * @category Guard\n */\nexport function isNullish<T>(\n data: T | null | undefined,\n): data is NarrowedTo<T, null | undefined> {\n return data === null || data === undefined;\n}\n"],"mappings":"AAiBA,SAAgB,EACd,EACyC,CACzC,OAAO,GAAS"}