https://github.com/alorel/rxutils
Utility functions for rxjs
https://github.com/alorel/rxutils
Last synced: 2 days ago
JSON representation
Utility functions for rxjs
- Host: GitHub
- URL: https://github.com/alorel/rxutils
- Owner: Alorel
- License: mit
- Created: 2019-07-23T18:06:23.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-20T13:02:20.000Z (about 2 years ago)
- Last Synced: 2025-04-07T20:13:04.456Z (19 days ago)
- Language: TypeScript
- Size: 2.46 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
**Table of Contents**
- [Rx Utils](#rx-utils)
- [Installation](#installation)
- [Polyfills](#polyfills)# Rx Utils
Utility functions for rxjs

-----
A collection of utility functions for rxjs:
```typescript
import {of} from 'rxjs';
import {innerMap, logError, distinctUntilDeepChanged} from '@aloreljs/rxutils/operators';of([1, 2, 3])
.pipe(
innerMap(n => n * 2),
logError('[Inner map error]'),
distinctUntilDeepChanged()
)
.subscribe();
```Full API docs and examples for version 2.3.0 are available [here](https://github.com/Alorel/rxutils/tree/2.3.0/docs).
Docs and examples for the latest version are available [here](http://bit.ly/rxutils-master-docs).# Installation
```
npm install rxjs@^7.0.0 @aloreljs/rxutils;
```# Polyfills
Apart from your standard ES6 polyfills, you must ensure `Symbol`s are polyfilled.