UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

8 lines 369 B
import { makeAssertionValue } from "./makeAssertionValue.mjs"; export function withContext_(self, expr, sourceLocation) { return makeAssertionValue(self.assertion, self.value, self.result, expr, sourceLocation); } export function withContext(expr, sourceLocation) { return self => withContext_(self, expr, sourceLocation); } //# sourceMappingURL=withContext.mjs.map