@sapphire/utilities
Version:
Common JavaScript utilities for the Sapphire Community
15 lines (12 loc) • 491 B
JavaScript
;
var __defProp = Object.defineProperty;
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
// src/lib/isNullOrUndefined.ts
function isNullOrUndefined(value) {
return value === undefined || value === null;
}
__name(isNullOrUndefined, "isNullOrUndefined");
exports.isNullOrUndefined = isNullOrUndefined;
exports.isNullish = isNullOrUndefined;
//# sourceMappingURL=isNullOrUndefined.cjs.map
//# sourceMappingURL=isNullOrUndefined.cjs.map