without (Functional Programming) ​
Creates a function that removes specific values from an array. Use it with pipe.
typescript
const result = pipe(array, without(...values));INFO
Prefer the original es-toolkit without in ordinary code. Use this fp variant when composing transformations with pipe.
Usage ​
without removes every value from the piped array that is equal to one of values. It is lazy-capable inside pipe.
typescript
import { pipe, without } from 'es-toolkit/fp';
pipe([1, 2, 3, 2], without(2)); // => [1, 3]Parameters ​
values(T[]): The values to remove from the piped array.
Returns ​
((array: readonly T[]) => T[]): A function that maps a readonly T[] to an array without values.

