Skip to content

v2.5.3

Choose a tag to compare

@trxcllnt trxcllnt released this 28 Mar 03:03
· 157 commits to master since this release

The IxJS v2.5.3 release is now available. This updates the following:

New Features

  • Add Iterator support for the from method for both AsyncIterable and Iterable
  • Add callback overload to tap to support tap(nextCb, errorCb, doneCb) in addition to tap(observer)
  • Adds Iterable#pipe(writable), Iterable#toDOMStream(), Iterable#pipeTo/pipeThrough/tee to match AsyncIterable

Changes

  • Change callbacks for PartialObserver and finally to return any instead of void

Bug Fixes

  • #269 pipe broken for two operators
  • Fixes combineLatest and zip to handle zero length arguments
  • #273 Fixes issues with memoize and adds additional tests