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

Commit 04471ae

Browse files
Fixing Issue #505
1 parent d14b33c commit 04471ae

18 files changed

Lines changed: 30 additions & 23 deletions

dist/rx.all.compat.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
var Rx = {
2525
internals: {},
2626
config: {
27-
Promise: root.Promise,
27+
Promise: root.Promise
2828
},
2929
helpers: { }
3030
};
@@ -6892,7 +6892,7 @@
68926892
// Hack check for valueOf
68936893
var valueOf = obj.valueOf();
68946894
if (typeof valueOf === 'number') { return numberHashFn(valueOf); }
6895-
if (typeof obj === 'string') { return stringHashFn(valueOf); }
6895+
if (typeof valueOf === 'string') { return stringHashFn(valueOf); }
68966896
}
68976897
if (obj.hashCode) { return obj.hashCode(); }
68986898

@@ -8041,7 +8041,7 @@
80418041
/**
80428042
* Matches when the observable sequence has an available value and projects the value.
80438043
*
8044-
* @param selector Selector that will be invoked for values in the source sequence.
8044+
* @param {Function} selector Selector that will be invoked for values in the source sequence.
80458045
* @returns {Plan} Plan that produces the projected values, to be fed (with other plans) to the when operator.
80468046
*/
80478047
observableProto.thenDo = function (selector) {

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: 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.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
var Rx = {
2525
internals: {},
2626
config: {
27-
Promise: root.Promise,
27+
Promise: root.Promise
2828
},
2929
helpers: { }
3030
};
@@ -6635,7 +6635,7 @@
66356635
// Hack check for valueOf
66366636
var valueOf = obj.valueOf();
66376637
if (typeof valueOf === 'number') { return numberHashFn(valueOf); }
6638-
if (typeof obj === 'string') { return stringHashFn(valueOf); }
6638+
if (typeof valueOf === 'string') { return stringHashFn(valueOf); }
66396639
}
66406640
if (obj.hashCode) { return obj.hashCode(); }
66416641

@@ -7784,7 +7784,7 @@
77847784
/**
77857785
* Matches when the observable sequence has an available value and projects the value.
77867786
*
7787-
* @param selector Selector that will be invoked for values in the source sequence.
7787+
* @param {Function} selector Selector that will be invoked for values in the source sequence.
77887788
* @returns {Plan} Plan that produces the projected values, to be fed (with other plans) to the when operator.
77897789
*/
77907790
observableProto.thenDo = function (selector) {

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.coincidence.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
// Hack check for valueOf
119119
var valueOf = obj.valueOf();
120120
if (typeof valueOf === 'number') { return numberHashFn(valueOf); }
121-
if (typeof obj === 'string') { return stringHashFn(valueOf); }
121+
if (typeof valueOf === 'string') { return stringHashFn(valueOf); }
122122
}
123123
if (obj.hashCode) { return obj.hashCode(); }
124124

dist/rx.coincidence.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.coincidence.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
@@ -24,7 +24,7 @@
2424
var Rx = {
2525
internals: {},
2626
config: {
27-
Promise: root.Promise,
27+
Promise: root.Promise
2828
},
2929
helpers: { }
3030
};

0 commit comments

Comments
 (0)