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

fluxible

Package Overview
Dependencies
Maintainers
5
Versions
53
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fluxible - npm Package Compare versions

Comparing version 0.2.6 to 0.2.7

9

lib/Fluxible.js

@@ -78,7 +78,8 @@ /**

*/
Fluxible.prototype._defaultComponentActionHandler = function defaultComponentActionHandler(err) {
if (err) {
debug('Action returned error', err);
throw err;
Fluxible.prototype._defaultComponentActionHandler = function defaultComponentActionHandler(context, payload, done) {
if (payload.err) {
debug('Action returned error', payload.err);
throw payload.err;
}
done();
};

@@ -85,0 +86,0 @@

@@ -152,4 +152,6 @@ /**

executeAction: function componentExecuteAction(action, payload) {
var actionHandler = self._app._componentActionHandler;
self.executeAction(action, payload, actionHandler);
self.executeAction(action, payload, function actionHandlerWrapper(err) {
var noop = function () {};
self.executeAction(self._app._componentActionHandler, { err: err }, noop);
});
}

@@ -156,0 +158,0 @@ };

{
"name": "fluxible",
"version": "0.2.6",
"version": "0.2.7",
"description": "A pluggable container for isomorphic flux applications",

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