UNPKG

@typed/fp

Version:

Data Structures and Resources for fp-ts

12 lines 267 B
/** * Branded is a module to help you construct Branded types. * * @since 0.9.2 */ import { unsafeCoerce } from './function'; /** * @since 0.9.2 * @category Constructor */ export const Branded = () => (e) => unsafeCoerce(e); //# sourceMappingURL=Branded.js.map