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

putil-waterfall

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

putil-waterfall - npm Package Compare versions

Comparing version 1.1.2 to 1.1.3

6

lib/waterfall.js

@@ -55,3 +55,3 @@ /* putil-waterfall

waterfall.every = function(arr, fn, callback) {
waterfall.every = function(funcArray, fn, callback) {

@@ -61,7 +61,7 @@ if (callback && typeof callback !== 'function')

if (!Array.isArray(arr))
if (!Array.isArray(funcArray))
throw new Error('Invalid argument. Array value are required as first argument');
callback = callback || function() {};
const arr = funcArray.slice(0);
var index = -1;

@@ -68,0 +68,0 @@ const next = function(error) {

{
"name": "putil-waterfall",
"description": "Simple, fast async waterfall NodeJs module for JavaScript",
"version": "1.1.2",
"version": "1.1.3",
"author": "Panates Ltd.",

@@ -6,0 +6,0 @@ "contributors": [

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