Skip to main content
variable any
import { any } from "https://deno.land/x/30_seconds_of_typescript@v1.0.1/util.ts";

Returns true if the provided predicate function returns true for at least one element in a collection, false otherwise. Use Array.prototype.some() to test if any elements in the collection return true based on fn. Omit the second argument, fn, to use Boolean as a default.

type

<T = any>(arr: T[], fn?: (t: T) => boolean) => unknown