MCPcopy
hub / github.com/udecode/plate / isNull

Function isNull

packages/udecode/utils/src/type-utils.ts:4–4  ·  view source on GitHub ↗
(obj: any)

Source from the content-addressed store, hash-verified

2export const isUndefined = (obj: any): obj is undefined => obj === undefined;
3
4export const isNull = (obj: any): obj is null => obj === null;
5
6/** @returns Whether the provided parameter is undefined or null. */
7export const isUndefinedOrNull = (obj: any): obj is null | undefined =>

Callers 1

isUndefinedOrNullFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…