Nullish refers to null or undefined.
import * as G from "flurp/guard";G.isNotNullish({}); // trueG.isNotNullish(null); // falseG.isNullNullish(undefined); // false
Nullish refers to null or undefined.
Example