MCPcopy Index your code
hub / github.com/Effect-TS/effect / isSink

Function isSink

packages/effect/src/internal/sink.ts:60–61  ·  view source on GitHub ↗
(u: unknown)

Source from the content-addressed store, hash-verified

58
59/** @internal */
60export const isSink = (u: unknown): u is Sink.Sink<unknown, unknown, unknown, unknown, unknown> =>
61 hasProperty(u, SinkTypeId)
62
63/** @internal */
64export const suspend = <A, In, L, E, R>(evaluate: LazyArg<Sink.Sink<A, In, L, E, R>>): Sink.Sink<A, In, L, E, R> =>

Callers 1

sink.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected