Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Commit 215e2df

Browse files
Removing finally aliases
1 parent 4a23957 commit 215e2df

28 files changed

Lines changed: 45 additions & 43 deletions

.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ nuget/
66
doc/
77
examples/
88
tests/
9+
logos/
10+
modules/
911
.git*
1012
.jshint*
1113
.npmignore

dist/rx.all.compat.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4554,7 +4554,7 @@ var FlatMapObservable = (function(__super__){
45544554
* @param {Function} finallyAction Action to invoke after the source observable sequence terminates.
45554555
* @returns {Observable} Source sequence with the action-invoking termination behavior applied.
45564556
*/
4557-
observableProto['finally'] = observableProto.ensure = function (action) {
4557+
observableProto['finally'] = function (action) {
45584558
var source = this;
45594559
return new AnonymousObservable(function (observer) {
45604560
var subscription = tryCatch(source.subscribe).call(source, observer);

dist/rx.all.compat.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.all.compat.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.all.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4409,7 +4409,7 @@ var FlatMapObservable = (function(__super__){
44094409
* @param {Function} finallyAction Action to invoke after the source observable sequence terminates.
44104410
* @returns {Observable} Source sequence with the action-invoking termination behavior applied.
44114411
*/
4412-
observableProto['finally'] = observableProto.ensure = function (action) {
4412+
observableProto['finally'] = function (action) {
44134413
var source = this;
44144414
return new AnonymousObservable(function (observer) {
44154415
var subscription = tryCatch(source.subscribe).call(source, observer);

dist/rx.all.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.all.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.compat.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4468,7 +4468,7 @@ var FlatMapObservable = (function(__super__){
44684468
* @param {Function} finallyAction Action to invoke after the source observable sequence terminates.
44694469
* @returns {Observable} Source sequence with the action-invoking termination behavior applied.
44704470
*/
4471-
observableProto['finally'] = observableProto.ensure = function (action) {
4471+
observableProto['finally'] = function (action) {
44724472
var source = this;
44734473
return new AnonymousObservable(function (observer) {
44744474
var subscription = tryCatch(source.subscribe).call(source, observer);

dist/rx.compat.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/rx.compat.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)