getify/monio

IOxHelpers: research and provide additional operators

Open

#15 geöffnet am 5. Feb. 2022

Auf GitHub ansehen
 (0 Kommentare) (1 Reaktion) (0 zugewiesene Personen)JavaScript (60 Forks)github user discovery
enhancementgood first issuehelp wanted

Repository-Metriken

Stars
 (1.127 Stars)
PR-Merge-Metriken
 (PR-Metriken ausstehend)

Beschreibung

RX operators to look more into adding in IOxHelpers:

  • buffer(..) -- mostly the time based one, which is sorta zip-over-time
  • takeUntil(..) -- waits on a value from another IOx to signal it should stop taking
  • range(start,end) -- like seq(start,1) + take(end - start)
  • forkJoin(..) -- like zip(..) but waits to emit only the last set of values
  • concat(..) -- combinator (like merge(..) or zip(..), but goes in order)... would need a different name!
  • pluck(..) -- like IOx's version of prop(..)
  • find(..) -- like filterIn(..) + take(1)
  • timeout(..)

Contributor Guide