filter
Array.filter(target, by)
Filters elements from target array based on the predicate function by.
Example
ts
import { Array } from "@monstermann/array";
Array.filter([1, 2, 3, 4], (x) => x > 2); // [3, 4]ts
import { Array } from "@monstermann/array";
pipe(
[1, 2, 3, 4],
Array.filter((x) => x > 2),
); // [3, 4]