MCPcopy Create free account
hub / github.com/Effect-TS/effect / isEffect

Function isEffect

packages/effect/src/internal/core.ts:116–116  ·  view source on GitHub ↗
(u: unknown)

Source from the content-addressed store, hash-verified

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

Callers 8

Schedule.tsFile · 0.90
layerFunction · 0.90
makeFnFunction · 0.90
effect.tsFile · 0.90
executionPlan.tsFile · 0.90
request.tsFile · 0.90
layer.tsFile · 0.90
Effect.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected