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

most-subject

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

most-subject - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

15

lib/subject.js

@@ -21,2 +21,11 @@ 'use strict';

};
this.add = function (x) {
return _this._add(x);
};
this.error = function (err) {
return _this._error(err);
};
this.end = function (x) {
return _this._end(x);
};
}

@@ -43,3 +52,3 @@

Subscription.prototype.add = function add(x) {
Subscription.prototype._add = function add(x) {
if (!this.active) {

@@ -51,3 +60,3 @@ return;

Subscription.prototype.error = function error(e) {
Subscription.prototype._error = function error(e) {
this.active = false;

@@ -65,3 +74,3 @@ this.sink.error(this.scheduler.now(), e);

Subscription.prototype.end = function end(x) {
Subscription.prototype._end = function end(x) {
if (!this.active) {

@@ -68,0 +77,0 @@ return;

2

package.json
{
"name": "most-subject",
"version": "1.0.0",
"version": "1.0.1",
"description": "Subject implemented in Most",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

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