An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

        

**Table of Contents**

- [Rx Utils](#rx-utils)
- [Installation](#installation)
- [Polyfills](#polyfills)

# Rx Utils

Utility functions for rxjs

![Core](https://github.com/Alorel/rxutils/workflows/Core/badge.svg)

-----

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.