UNPKG

@n3okill/utils

Version:
11 lines 298 B
import { isNull } from "./isNull"; import { isUndefined } from "./isUndefined"; /** * Check if argument is null or undefined * @param arg * @returns {boolean} */ export function isNullOrUndefined(arg) { return isNull(arg) || isUndefined(arg); } //# sourceMappingURL=isNullOrUndefined.js.map