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