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