UNPKG

@typed/io

Version:

Runtime IO type system

7 lines 271 B
import { toString } from '@typed/strings'; import * as G from '../guard'; import { Decoder } from './Decoder'; export function literal(...values) { return Decoder.fromGuard(G.literal(...values), values.map(toString).join(' | ')); } //# sourceMappingURL=Literal.js.map