Const
P.nullish is a wildcard pattern, matching null or undefined.
P.nullish
Read the documentation for P.nullish on GitHub
.with(P.nullish, (x) => `${x} is null or undefined`) Copy
.with(P.nullish, (x) => `${x} is null or undefined`)
P.nullish
is a wildcard pattern, matching null or undefined.Read the documentation for
P.nullish
on GitHub