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

barracks

Package Overview
Dependencies
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

barracks - npm Package Compare versions

Comparing version 4.0.2 to 4.0.3

7

index.js

@@ -60,2 +60,3 @@ /**

this._payload = payload;
this._isHandled = {};

@@ -74,3 +75,3 @@ this._isPending = {};

debug('Dispatched action \'%s\'.', action);
fn.call(this, payload, _stopDispatching.bind(this));
fn.call(this, this._payload, _stopDispatching.bind(this));
};

@@ -104,3 +105,4 @@

return _getAction.call(this, action);
var nwAction = _getAction.call(this, action);
return nwAction.bind(this, this._payload)
}.bind(this));

@@ -174,4 +176,5 @@

this._isDispatching = false;
this._payload = null;
this._isPending = {};
this._isHandled = {};
}
{
"name": "barracks",
"version": "4.0.2",
"version": "4.0.3",
"description": "An event dispatcher for the flux architecture",

@@ -5,0 +5,0 @@ "main": "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