added gitignore & removed node_modules

This commit is contained in:
2026-01-12 10:57:35 -05:00
parent 3669dbfd51
commit ff88990fc7
4007 changed files with 1447 additions and 790893 deletions

15
node_modules/is-what/dist/isOneOf.js generated vendored
View File

@@ -1,15 +0,0 @@
/**
* A factory function that creates a function to check if the payload is one of the given types.
*
* @example
* import { isOneOf, isNull, isUndefined } from 'is-what'
*
* const isNullOrUndefined = isOneOf(isNull, isUndefined)
*
* isNullOrUndefined(null) // true
* isNullOrUndefined(undefined) // true
* isNullOrUndefined(123) // false
*/
export function isOneOf(a, b, c, d, e) {
return (value) => a(value) || b(value) || (!!c && c(value)) || (!!d && d(value)) || (!!e && e(value));
}