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

Commit ea222a5

Browse files
Removing io.js
1 parent 8c5f1df commit ea222a5

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ language: node_js
22
node_js:
33
- "0.10"
44
- "0.11"
5-
- iojs
65
env:
76
global:
87
- secure: "JwyiLIEV6S7wzr9eUgQ/rP8BeeSY6ZabknHpUKSk4miA7d+/acFeuMAYu0d79BG8ndFIdG9EYbA7ZY1TH/metqDTrExzYLooa0XrAYg2x+cDSboII9albVn5bvdmmWIcgcmcZwKvi5JYLHWcA3Px84Aaf3YXN9V4lS1uLhl0eBI="

src/core/linq/observable/select.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
try {
1414
var result = selectorFn(value, count++, source);
1515
} catch (e) {
16-
o.onError(e);
17-
return;
16+
return o.onError(e);
1817
}
1918
o.onNext(result);
2019
}, function (e) { o.onError(e); }, function () { o.onCompleted(); });

0 commit comments

Comments
 (0)