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

Commit 12e211d

Browse files
unknownunknown
authored andcommitted
Version bump to 2.4.3
1 parent 530e842 commit 12e211d

42 files changed

Lines changed: 153 additions & 49 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.npmignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules/
2+
modules/
23
.npm-debug.log
34
.nuget/
45
nuget/
@@ -11,4 +12,4 @@ tests/
1112
.travis.yml
1213
CHANGELOG.*
1314
Gruntfile.js
14-
gruntfile.js
15+
travis.sh

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rxjs",
3-
"version": "2.4.1",
3+
"version": "2.4.3",
44
"main": [
55
"dist/rx.all.js",
66
"dist/rx.all.map",

dist/rx.aggregates.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.aggregates.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.compat.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7013,6 +7013,20 @@
70137013
}
70147014

70157015
addProperties(BehaviorSubject.prototype, Observer, {
7016+
/**
7017+
* Gets the current value or throws an exception.
7018+
* Value is frozen after onCompleted is called.
7019+
* After onError is called Value always throws the specified exception.
7020+
* An exception is always thrown after dispose is called.
7021+
* @returns {Mixed} The initial value passed to the constructor until OnNext is called; after which, the last value passed to OnNext.
7022+
*/
7023+
getValue: function () {
7024+
checkDisposed(this);
7025+
if (this.hasError) {
7026+
throw this.error;
7027+
}
7028+
return this.value;
7029+
},
70167030
/**
70177031
* Indicates whether the subject has observers subscribed to it.
70187032
* @returns {Boolean} Indicates whether the subject has observers subscribed to it.

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: 6 additions & 4 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: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6800,6 +6800,20 @@
68006800
}
68016801

68026802
addProperties(BehaviorSubject.prototype, Observer, {
6803+
/**
6804+
* Gets the current value or throws an exception.
6805+
* Value is frozen after onCompleted is called.
6806+
* After onError is called Value always throws the specified exception.
6807+
* An exception is always thrown after dispose is called.
6808+
* @returns {Mixed} The initial value passed to the constructor until OnNext is called; after which, the last value passed to OnNext.
6809+
*/
6810+
getValue: function () {
6811+
checkDisposed(this);
6812+
if (this.hasError) {
6813+
throw this.error;
6814+
}
6815+
return this.value;
6816+
},
68036817
/**
68046818
* Indicates whether the subject has observers subscribed to it.
68056819
* @returns {Boolean} Indicates whether the subject has observers subscribed to it.

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: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)