Handling `yield*` with Potential Errors in Effect Typescript
question regarding this, I understand that we need to
return yield* rather than just yield* , but what if in a prior yield* statement there is an Effect that can be both success or an error? do i need to prefix all yield*'s with return just in case it is an error?
