Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

xstream

Package Overview
Dependencies
Maintainers
2
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

xstream - npm Package Compare versions

Comparing version 6.3.1 to 6.3.2

10

CHANGELOG.md

@@ -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)

10

extra/pairwise.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc