realar-project/realar

normal: rename filter to wrap.filter

Closed this issue · 2 comments

const a = value(0);
const new_a_with_wrap_filter = a.wrap.filter(v => v);

// or maybe
const new_a_as_filtered_source = a.flow.filter(v => v);

Add possibility for use flow with another reactive value

const src = value(0);
const dst = value(0);

src.flow(dst);

#41 (comment)