UNPKG

runtypes

Version:

Runtime validation for static types

9 lines (8 loc) 216 B
import Null from "./Null.js"; import Undefined from "./Undefined.js"; import Union from "./Union.js"; /** * An alias for `Union(Null, Undefined)`. */ const Nullish = Union(Null, Undefined); export default Nullish;