Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@typeheim/fire-rx

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@typeheim/fire-rx - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

4

package.json
{
"name": "@typeheim/fire-rx",
"version": "0.0.2",
"version": "0.0.3",
"description": "RxJS on steroids",

@@ -32,3 +32,3 @@ "keywords": [

},
"gitHead": "66a5cc7cb7686f8533be35a3eafd2556c8f79819"
"gitHead": "bd1ec62535962da31713039df9b9e8731fed3570"
}

@@ -1,2 +0,2 @@

import { Observable } from 'rxjs';
import { Observable, Observer } from 'rxjs';
import { ReadonlyStream } from './ReadonlyStream';

@@ -53,2 +53,5 @@ import { Producer } from '../Contracts/Observables';

fail: (error: any) => void;
isFinished: () => boolean;
isFailed: () => boolean;
subscribe: (observer: (value: T) => void | Observer<T>) => void;
}

@@ -17,2 +17,3 @@ "use strict";

isFailed: () => this.internalSubject.hasError,
subscribe: (observer) => this.subscribe(observer)
};

@@ -19,0 +20,0 @@ executor(state);

Sorry, the diff of this file is not supported yet

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