© 2026 Hedgehog Software, LLC
zipRight
zipLeft
const a = E.Effect.sync(() => { console.log('a'); }); const b = E.Effect.sync(() => { console.log('b'); }); // b // a console.log(E.Effect.runSync(E.Effect.zipLeft(a)(b))); // b // a console.log(E.Effect.runSync(E.Effect.zipRight(a)(b)));