You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improve compatibility of fromAsyncIterable and toAsyncIterable. The toAsyncIterable will now output an object that's both an AsyncIterator and an AsyncIterable. Both helpers will now use a polyfill for Symbol.asyncIterator to improve compatibility with the Hermes engine and Babel transpilation
Submitted by @kitten (See #165)
Add addOne argument to takeWhile, allowing an additional value to be issued
Submitted by @kitten (See #156)
Patch Changes
Convert Push<T> and Start<T> signals to { tag, 0: value } objects, which are sufficiently backwards compatible and result in slightly faster execution in v8
Submitted by @kitten (See #155)
Make closed: boolean on ObservableSubscriptions a required field to comply with the Observable proposal's type spec
Submitted by @naporin0624 (See #151)
Add missing overload definition for filter, which allows types to be narrowed, e.g. by specifying a type predicate return type
Submitted by @kitten (See #149)