GraphReFlyTS

API Reference

takeUntil()

takeUntil: forward dep 0 (source) DATA until dep 1 (notifier) delivers its first DATA, then COMPLETE. partial:true + completeWhenDepsComplete:false + terminalAsRealInput:true: a source COMPLETE forwards COMPLETE; a notifier DATA triggers COMPLETE. Source/notifier ERROR propagates (default errorWhenDepsError).

Import

import { takeUntil } from "@graphrefly/ts/operators";

Signature

function takeUntil(): Operator<unknown, S>

Returns

A Operator<unknown, S> value.

Example

import { takeUntil } from "@graphrefly/ts/operators";

Source

packages/ts/src/graph/combinators.ts