@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
26 lines (21 loc) • 415 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.patch = patch;
let patched = false;
function patch() {
if (patched || Object.prototype["|>"]) {
return;
}
Object.defineProperty(Object.prototype, "unify", {
value() {
return this;
},
enumerable: false,
writable: true
});
patched = true;
}
patch();
//# sourceMappingURL=unification.js.map