Introducing `tapSyncError`: A New Version of `tap` for Error Handling
Is there a version of
Something like:
tap which take a function (a) => voidSomething like:
tap(a) => void// what I do these days
Effect.tapError((error) => Effect.sync(() => report(error.message))),
// what I'm talking about:
Effet.tapSyncError((error) => report(error.message))