realar-project / realar

5 kB Advanced state manager for React
MIT License
45 stars 0 forks source link

low: flow.signal.filter, flow.value.filter #80

Closed betula closed 3 years ago

betula commented 3 years ago
  const code = value('1122121122');

  code
    .flow.signal.filter((track) => !track)
    .watch(() => {

    });
betula commented 3 years ago

Implemented as

  code
    .as.signal().filter.not()
    .to(() =>

    });

in 0.6.0