© 2026 Hedgehog Software, LLC
dryRun
const service = (dryRun = false) => Effect.gen(function* () { yield* service2 }) const service2 = Effect.gen(function* () { yield* service3 }) const service3 = Effect.gen(function* () { // check if dryRun })