(u: unknown)
| 114 | |
| 115 | /** @internal */ |
| 116 | export const isEffect = (u: unknown): u is Effect.Effect<any, any, any> => hasProperty(u, EffectTypeId) |
| 117 | |
| 118 | /** @internal */ |
| 119 | export const isExit = (u: unknown): u is Exit.Exit<unknown, unknown> => hasProperty(u, ExitTypeId) |
no outgoing calls
no test coverage detected