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/isDate.cjs.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"isDate.cjs","names":[],"sources":["../src/isDate.ts"],"sourcesContent":["/**\n * A function that checks if the passed parameter is a Date and narrows its type accordingly.\n *\n * @param data - The variable to check.\n * @returns True if the passed input is a Date, false otherwise.\n * @signature\n * R.isDate(data)\n * @example\n * R.isDate(new Date()) //=> true\n * R.isDate('somethingElse') //=> false\n * @category Guard\n */\nexport function isDate(data: unknown): data is Date {\n return data instanceof Date;\n}\n"],"mappings":"AAYA,SAAgB,EAAO,EAA6B,CAClD,OAAO,aAAgB"}