Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

okOrElseForUndefinable

Transforms the Undefinable<T> into a Result<T, E> by mapping T to Ok(T). If input is undefined, then returns Err(E) with the result of recoverer()

function okOrElseForUndefinable<T, E>(input: Undefinable<T>, recoverer: RecoveryFn<E>): Result<T, E>;
§
okOrElseForUndefinable<T, E>(input: Undefinable<T>, recoverer: RecoveryFn<E>): Result<T, E>
[src]

§Type Parameters

§Parameters

§
recoverer: RecoveryFn<E>
[src]

§Return Type

§
Result<T, E>
[src]