Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
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
  • Socket score

Version published
Weekly downloads
50
decreased by-9.09%
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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc