Skip to content

findOrThrow

Array.findOrThrow(array, predicate)

Returns the first element in array that satisfies the provided predicate function, or throws an error if no element is found.

Example

ts
import { Array } from "@monstermann/array";

Array.findOrThrow([1, 2, 3, 4], (x) => x > 2); // 3
ts
import { Array } from "@monstermann/array";

pipe(
    [1, 2, 3, 4],
    Array.findOrThrow((x) => x > 2),
); // 3