⚗️ transform
Drops entries matching Criteria in array or tuple A.
Criteria
A
type R = DropMatch<Array<string | undefined>, undefined> // string[]type R = DropMatch<Array<string>, string> // never[]type R = DropMatch<Array<1 | 2>, number> // never[] Copy
type R = DropMatch<Array<string | undefined>, undefined> // string[]type R = DropMatch<Array<string>, string> // never[]type R = DropMatch<Array<1 | 2>, number> // never[]
⚗️ transform
Drops entries matching
Criteria
in array or tupleA
.