Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
talha_silentcontent
/
node_modules
/
tsafe
/
Filename :
exclude.d.ts
back
Copy
/** Return a function to use as Array.prototype.filter argument * to exclude one or many primitive value element from the array. * Ex: ([ "a", "b", "c" ] as const).filter(exclude("a")) return ("b" | "c")[] * Ex: ([ "a", "b", "c", "d"] as const).filter(exclude(["a", "b"]) gives ("c" | "d")[] */ export declare function exclude<T extends string | number | null | undefined | boolean>(target: readonly T[] | T): <U>(str: U) => str is Exclude<U, T>;