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.1.4 to 4.1.5

9

index.js

@@ -74,3 +74,3 @@ /**

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

@@ -109,5 +109,6 @@ };

debug('Waiting for%s', actions.map(function(action) {
return ' \'' + action + '\'';
}));
debug('Waiting for ' + actions.reduce(function(prev, action, i, arr) {
if (i == actions.length - 1) return prev + '\'' + action + '\'';
return prev + '\'' + action + '\', ';
}, ''));
var nwArr = arr.concat(done.bind(this));

@@ -114,0 +115,0 @@

{
"name": "barracks",
"version": "4.1.4",
"version": "4.1.5",
"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