(effect: Micro<A, E>)
| 4302 | * @category execution |
| 4303 | */ |
| 4304 | export const runSync = <A, E>(effect: Micro<A, E>): A => { |
| 4305 | const exit = runSyncExit(effect) |
| 4306 | if (exit._tag === "Failure") throw exit.cause |
| 4307 | return exit.value |
| 4308 | } |
| 4309 | |
| 4310 | // ---------------------------------------------------------------------------- |
| 4311 | // Errors |
nothing calls this directly
no test coverage detected
searching dependent graphs…