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

isNullOrUndefined

function isNullOrUndefined<T>(input: Maybe<T>): input is null | undefined;
§
isNullOrUndefined<T>(input: Maybe<T>): input is null | undefined
[src]

§Type Parameters

§Parameters

§
input: Maybe<T>
[src]

§Return Type

§
input is null | undefined
[src]