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

reshow-flux-base

Package Overview
Dependencies
Maintainers
1
Versions
132
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reshow-flux-base - npm Package Compare versions

Comparing version 0.2.9 to 0.3.0

12

build/cjs/Store.js

@@ -65,7 +65,14 @@ "use strict";

if (next.length) {
setImmediate(function () {
var nextRun = function nextRun() {
return next.forEach(function (emit) {
return _this.emit(emit);
});
});
};
if (_this.nextAsync) {
_this.nextAsync = false;
setImmediate(nextRun);
} else {
nextRun();
}
}

@@ -91,2 +98,3 @@ });

this.nextEmits = [];
this.nextAsync = false;
return this.getInitialState();

@@ -93,0 +101,0 @@ }

@@ -51,7 +51,14 @@ import _classCallCheck from "reshow-runtime/es/helpers/classCallCheck";

if (next.length) {
setImmediate(function () {
var nextRun = function nextRun() {
return next.forEach(function (emit) {
return _this.emit(emit);
});
});
};
if (_this.nextAsync) {
_this.nextAsync = false;
setImmediate(nextRun);
} else {
nextRun();
}
}

@@ -81,2 +88,3 @@ });

this.nextEmits = [];
this.nextAsync = false;
return this.getInitialState();

@@ -83,0 +91,0 @@ }

2

package.json
{
"name": "reshow-flux-base",
"version": "0.2.9",
"version": "0.3.0",
"description": "Pure flux dispatch mechanism",

@@ -5,0 +5,0 @@ "main": "./build/cjs/index.js",

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