New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

rnjs

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rnjs - npm Package Compare versions

Comparing version 1.1.12 to 1.1.13

dist/internal/types/Subscriber.d.ts

15

dist/internal/RN.js

@@ -158,3 +158,3 @@ "use strict";

var id_1 = this.addSubscriber(subscriber);
var subscription_1 = {
var subscription = {
unsubscribe: function () {

@@ -165,19 +165,19 @@ _this.removeSubscriber(id_1);

};
return subscription_1;
return subscription;
}
case 'end-successfully': {
subscriber.complete(this.value); // emit final value
var subscription_2 = {
var subscription = {
unsubscribe: utils_1.noop // dummy
};
return subscription_2;
return subscription;
}
case 'end-with-error': {
subscriber.error(this.value); // emit final value
var subscription_3 = {
var subscription = {
unsubscribe: utils_1.noop // dummy
};
return subscription_3;
return subscription;
}
default:
default: {
var subscription = {

@@ -187,2 +187,3 @@ unsubscribe: utils_1.noop // dummy

return subscription;
}
}

@@ -189,0 +190,0 @@ };

{
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"prebuild": "rimraf dist",

@@ -21,3 +22,3 @@ "build": "tsc",

"name": "rnjs",
"version": "1.1.12",
"version": "1.1.13",
"description": "Reactive Programming Library for TypeScript/JavaScript",

@@ -28,3 +29,3 @@ "main": "dist/index.js",

"type": "git",
"url": "git+https://github.com/noshiro-pf/RN.git"
"url": "git+https://github.com/noshiro-pf/rnjs.git"
},

@@ -43,5 +44,5 @@ "keywords": [

"bugs": {
"url": "https://github.com/noshiro-pf/RN/issues"
"url": "https://github.com/noshiro-pf/rnjs/issues"
},
"homepage": "https://github.com/noshiro-pf/RN#readme",
"homepage": "https://github.com/noshiro-pf/rnjs#readme",
"dependencies": {

@@ -48,0 +49,0 @@ "rxjs": "^6.5.2"

@@ -14,3 +14,3 @@ # RN

```
npm install rnjs
npm install --save rnjs
```

@@ -17,0 +17,0 @@

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