// ets_tracing: off import type { Sync } from "./core.js" import { fold_ } from "./core.js" /** * Returns whether this effect is a failure. */ export function isFailure(self: Sync) { return fold_( self, () => true, () => false ) }