UNPKG

@qntm-code/utils

Version:

A collection of useful utility functions with associated TypeScript types. All functions have been unit tested.

7 lines (6 loc) 160 B
/** * Determines whether a given value is null or undefined */ export function isNullOrUndefined(value) { return value === null || value === undefined; }