UNPKG

@typed/io

Version:

Runtime IO type system

6 lines 224 B
import { isNull } from '@typed/logic'; import { Guard } from './Guard'; import { union } from './Union'; export const Null = Guard.is(isNull); export const nullable = (g) => union([g, Null]); //# sourceMappingURL=Null.js.map