Skip to main content
Module

x/tsafe/index.ts>exclude

🔩 The missing TypeScript utils
Go to Latest
function exclude
import { exclude } from "https://deno.land/x/tsafe@v1.6.0/index.ts";

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")[]

Type Parameters

T extends
| string
| number
| null
| undefined
| boolean

Parameters

target: readonly T[] | T