UNPKG

is-what

Version:

JS type check (TypeScript supported) functions like `isPlainObject() isArray()` etc. A simple & small integration.

3 lines (2 loc) 152 B
/** Returns true whether the payload is null or undefined */ export declare const isNullOrUndefined: (payload: unknown) => payload is null | undefined;