export function nullish(value) { return typeof value === "undefined" || value === null; } export function notNullish(value) { return !nullish(value); }