Splits source into several duplicated streams. Returns an object with keys according to labels. Each value is a stream which echos the values from source.
source
labels
const { a, b, c} = splitLabelled(source, `a`, `b`, `c`);// a, b, c are Reactive types Copy
const { a, b, c} = splitLabelled(source, `a`, `b`, `c`);// a, b, c are Reactive types
See also split to get an unlabelled split
Splits
source
into several duplicated streams. Returns an object with keys according tolabels
. Each value is a stream which echos the values fromsource
.See also split to get an unlabelled split