Skip to content

0.13.2: Add skipRepeats

Compare
Choose a tag to compare
@briancavalier briancavalier released this 19 Apr 01:22
· 395 commits to master since this release
  • Add skipRepeats and skipRepeatsWith as new preferred names for distinct and distinctBy.
    • The names distinct and distinctBy are now deprecated.
  • Improve handling of EventEmitter subscriptions in fromEvent.
  • Optimize fromArray
  • Fix for debounce dropping the last event when a stream ended early (e.g. via until).
    • If, when the stream is about to end, there is a pending debounced event, that event will be propagated just before end. The event and end will have the same timestamp.