UNPKG

@typed/io

Version:

Runtime IO type system

6 lines 237 B
import * as G from '../guard'; import { Decoder } from './Decoder'; import { union } from './Union'; export const Null = Decoder.fromGuard(G.Null, `null`); export const nullable = (d) => union([d, Null]); //# sourceMappingURL=Null.js.map