UNPKG

@typed/io

Version:

Runtime IO type system

5 lines 232 B
import { isSet } from '@typed/logic'; import { refinement } from './refinement'; export const Set = { is: isSet }; export const set = (g) => refinement(Set, (s) => Array.from(s.values()).every(g.is)); //# sourceMappingURL=Set.js.map