@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
27 lines (23 loc) • 380 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.union = union;
exports.unionFn = unionFn;
/**
* Compact the union produced by the result of f
*
* @ets_optimize identity
*/
function unionFn(_) {
return _;
}
/**
* Compact the union
*
* @ets_optimize identity
*/
function union(_) {
return _;
}
//# sourceMappingURL=union.js.map