@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
17 lines (15 loc) • 447 B
JavaScript
import * as T from "../deps.mjs";
import { fromEffect } from "../fromEffect.mjs";
/**
* Returns an effect that models failure with the specified `Cause`.
*/
export function halt(self, __trace) {
return fromEffect(T.halt(self), __trace);
}
/**
* Returns an effect that models failure with the specified `Cause`.
*/
export function haltWith(self, __trace) {
return fromEffect(T.haltWith(self, __trace));
}
//# sourceMappingURL=halt.mjs.map