Comparing version 1.1.12 to 1.1.13
@@ -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 @@ |
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
86708
74
1659