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

toUndefinableFromMaybe

Return undfined if input is null or undfined. Otherwise, return T directly.

function toUndefinableFromMaybe<T>(input: Maybe<T>): Undefinable<T>;
§
toUndefinableFromMaybe<T>(input: Maybe<T>): Undefinable<T>
[src]

§Type Parameters

§Parameters

§
input: Maybe<T>
[src]

§Return Type

§
Undefinable<T>
[src]