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.15.6 to 0.15.7

8

build/cjs/createReducer.js

@@ -23,3 +23,3 @@ "use strict";

add: function add(handler) {
return pool.push(handler);
return pool.unshift(handler);
},

@@ -31,4 +31,6 @@ remove: function remove(handler) {

return setTimeout(function () {
for (var i = 0, j = pool.length; i < j; i++) {
pool[i](state, action);
var i = pool.length;
while (i--) {
pool[i] && pool[i](state, action);
}

@@ -35,0 +37,0 @@ });

@@ -12,3 +12,3 @@ import _toConsumableArray from "reshow-runtime/es/helpers/toConsumableArray";

add: function add(handler) {
return pool.push(handler);
return pool.unshift(handler);
},

@@ -20,4 +20,6 @@ remove: function remove(handler) {

return setTimeout(function () {
for (var i = 0, j = pool.length; i < j; i++) {
pool[i](state, action);
var i = pool.length;
while (i--) {
pool[i] && pool[i](state, action);
}

@@ -24,0 +26,0 @@ });

{
"name": "reshow-flux-base",
"version": "0.15.6",
"version": "0.15.7",
"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