🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

@aloreljs/rxutils

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aloreljs/rxutils

<!-- START doctoc generated TOC please keep comment here to allow auto update --> <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --> **Table of Contents**

2.3.0
latest
Source
npm
Version published
Weekly downloads
31
10.71%
Maintainers
1
Weekly downloads
 
Created
Source

Table of Contents

  • Rx Utils
  • Installation
  • Polyfills

Rx Utils

Utility functions for rxjs

Core

A collection of utility functions for rxjs:

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. Docs and examples for the latest version are available here.

Installation

npm install rxjs@^7.0.0 @aloreljs/rxutils;

Polyfills

Apart from your standard ES6 polyfills, you must ensure Symbols are polyfilled.

FAQs

Package last updated on 13 Nov 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts