@qntm-code/utils
Version:
A collection of useful utility functions with associated TypeScript types. All functions have been unit tested.
11 lines (10 loc) • 313 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isNullOrUndefined = void 0;
/**
* Determines whether a given value is null or undefined
*/
function isNullOrUndefined(value) {
return value === null || value === undefined;
}
exports.isNullOrUndefined = isNullOrUndefined;