Comparing version 6.3.1 to 6.3.2
@@ -0,1 +1,11 @@ | ||
<a name="6.3.2"></a> | ||
## [6.3.2](https://github.com/staltz/xstream/compare/v6.3.1...v6.3.2) (2016-09-21) | ||
### Bug Fixes | ||
* **pairwise:** support use of pairwise in synchronous recursive situations ([530dc25](https://github.com/staltz/xstream/commit/530dc25)) | ||
<a name="6.3.1"></a> | ||
@@ -2,0 +12,0 @@ ## [6.3.1](https://github.com/staltz/xstream/compare/v6.3.0...v6.3.1) (2016-09-20) |
@@ -26,6 +26,10 @@ "use strict"; | ||
if (this.has) { | ||
u._n([this.val, t]); | ||
var prev = this.val; | ||
this.val = t; | ||
u._n([prev, t]); | ||
} | ||
this.val = t; | ||
this.has = true; | ||
else { | ||
this.val = t; | ||
this.has = true; | ||
} | ||
}; | ||
@@ -32,0 +36,0 @@ PairwiseOperator.prototype._e = function (err) { |
{ | ||
"name": "xstream", | ||
"version": "6.3.1", | ||
"version": "6.3.2", | ||
"description": "An extremely intuitive, small, and fast functional reactive stream library for JavaScript", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -28,6 +28,9 @@ import {Operator, Stream} from '../core'; | ||
if (this.has) { | ||
u._n([this.val, t]); | ||
const prev = this.val; | ||
this.val = t; | ||
u._n([prev, t]); | ||
} else { | ||
this.val = t; | ||
this.has = true; | ||
} | ||
this.val = t; | ||
this.has = true; | ||
} | ||
@@ -34,0 +37,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
883462
17079