UNPKG

@n3okill/utils

Version:
14 lines 454 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isNullOrUndefined = isNullOrUndefined; const isNull_1 = require("./isNull"); const isUndefined_1 = require("./isUndefined"); /** * Check if argument is null or undefined * @param arg * @returns {boolean} */ function isNullOrUndefined(arg) { return (0, isNull_1.isNull)(arg) || (0, isUndefined_1.isUndefined)(arg); } //# sourceMappingURL=isNullOrUndefined.js.map