observable-fns

🕵️‍♀️ Light-weight observable implementation and functional utilities in TypeScript

MIT License

Downloads
655.5K
Stars
44
Committers
2

Bot releases are hidden (Show)

observable-fns - v0.6.1 Latest Release

Published by andywer over 3 years ago

Small patch release as a follow-up to recently released v0.6.0. Turns out the type import wasn't really working as expected yet.

Bug fixes

  • Fix import of exposed global types (#20)
observable-fns - v0.6.0

Published by andywer over 3 years ago

A small update after quite some while, fixing some issues with the latest TypeScript version.

Bug fixes

  • Fix TypeScript 4.3 issues (#18)
  • Update development dependencies (#18, too)

Chores

  • Update node.js to v10 in CI, so this is now the minimum version that's guaranteed to work (#18, too)
observable-fns - v0.5.1

Published by andywer over 4 years ago

Just a small patch release.

Bug fixes

  • Fix Symbol.observable not being defined in production (#11)
observable-fns - v0.5.0

Published by andywer almost 5 years ago

A very small release shipping a new type export.

Features

  • Export SubscriptionObserver interface (#10)
observable-fns - v0.4.0

Published by andywer almost 5 years ago

This is an important release – the prefix has been dropped, it's just observable-fns now! 🚀

It also comes with more complete documentation.

New features

  • Added interval()
  • Added merge()
  • Added scan()
observable-fns - v0.3.1

Published by andywer almost 5 years ago

Chores

  • Add sideEffects to package.json
  • Delete the ES module build directory, too, in the prebuild script
observable-fns - v0.3.0

Published by andywer almost 5 years ago

Breaking changes

  • flatMap(), filter() and map() have a changed API to play along with .pipe()

New features

  • .pipe() method on Observable
  • Publish ES module build (additionally to CommonJS build)
observable-fns - v0.2.0

Published by andywer almost 5 years ago

An important release, fixing some bugs and finally adding a bunch of tests.

Features

  • multicast() now unsubscribes and re-subscribes if all its subscriber unsubscribe (#2)
  • unsubscribe() to unsubscribe from any ObservableLike subscription

Bug fixes

  • Fixes filter(), flatMap() and map() which could complete before their async handlers where done (#2)