New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

iguazu

Package Overview
Dependencies
Maintainers
5
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

iguazu - npm Package Compare versions

Comparing version 2.5.2 to 2.6.2

5

lib/loadHelpers.js

@@ -75,3 +75,4 @@ "use strict";

error = result.error,
data = result.data;
data = result.data,
isNonCritical = result.noncritical;
sequencedData = _objectSpread(_defineProperty({}, prevKey, data), sequencedData);

@@ -94,3 +95,3 @@ var promise = prevPromise.then(function (prevData) {

};
} else if (error) {
} else if (error && isNonCritical !== true) {
return {

@@ -97,0 +98,0 @@ status: 'complete',

2

package.json
{
"name": "iguazu",
"version": "2.5.2",
"version": "2.6.2",
"description": "An asynchronous data flow solution for React/Redux applications",

@@ -5,0 +5,0 @@ "author": "Maia Teegarden",

@@ -306,2 +306,15 @@ # Iguazu

Function handlers require the previous calls to succeed to continue to the next by default. In the
event a request returns with an error all remaining calls are flagged with the same error. To bypass
this default behavior, you can wrap the function handler in `noncritical` to continue without the
previous results.
```javascript
const sequenceLoadFunctions = sequence([
{ key: 'first', handler: () => dispatch(loadFirst()) },
{ key: 'second', handler: ({ first }) => dispatch(loadSecond(first.someParam)) },
{ key: 'unrelated', handler: noncritical(() => dispatch(loadUnrelated())) },
]);
````
### Updating

@@ -308,0 +321,0 @@

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