Initial commit

This commit is contained in:
Brian McGonagill 2026-03-18 09:02:21 -05:00
commit b3a51a4115
10336 changed files with 2381973 additions and 0 deletions

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

@ -0,0 +1 @@
{"version":3,"file":"isFunction.cjs","names":[],"sources":["../src/isFunction.ts"],"sourcesContent":["import type { NarrowedTo } from \"./internal/types/NarrowedTo\";\nimport type { StrictFunction } from \"./internal/types/StrictFunction\";\n\n/**\n * A function that checks if the passed parameter is a Function and narrows its type accordingly.\n *\n * @param data - The variable to check.\n * @returns True if the passed input is a Function, false otherwise.\n * @signature\n * R.isFunction(data)\n * @example\n * R.isFunction(() => {}) //=> true\n * R.isFunction('somethingElse') //=> false\n * @category Guard\n */\nexport const isFunction = <T>(\n data: StrictFunction | T,\n): data is NarrowedTo<T, StrictFunction> => typeof data === \"function\";\n"],"mappings":"AAeA,MAAa,EACX,GAC0C,OAAO,GAAS"}