Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/rambda/index.d.ts>find

Faster and smaller alternative to Ramda
Latest
function find
import { find } from "https://deno.land/x/rambda@9.2.1/index.d.ts";

It returns the first element of list that satisfy the predicate.

If there is no such element, it returns undefined.

Parameters

predicate: (x: T) => boolean
list: T[]

Returns

T | undefined

Parameters

predicate: (x: T) => boolean

Returns

(list: T[]) => T | undefined