// ets_tracing: off import * as CH from "../Channel/index.js" import * as C from "./core.js" /** * A sink that always fails with the specified error. */ export function fail(e: E): C.Sink { return new C.Sink(CH.fail(e)) }