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

async-waterfall

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

async-waterfall - npm Package Compare versions

Comparing version 0.1.4 to 0.1.5

2

bower.json

@@ -5,3 +5,3 @@ {

"description": "Runs a list of async tasks, passing the results of each into the next one",
"version": "0.1.4",
"version": "0.1.5",
"keywords": ["async", "waterfall", "tasks", "control", "flow"],

@@ -8,0 +8,0 @@ "main": "index.js",

@@ -5,3 +5,3 @@ {

"description": "Runs a list of async tasks, passing the results of each into the next one",
"version": "0.1.4",
"version": "0.1.5",
"keywords": ["async", "waterfall", "tasks", "control", "flow"],

@@ -8,0 +8,0 @@ "main": "index.js",

@@ -32,3 +32,3 @@ // MIT license (by Elan Shanker).

var _isArray = Array.isArray || function(maybeArray){
return Object.prototype.toString.call(maybeArray) === "[object Array]";
return Object.prototype.toString.call(maybeArray) === '[object Array]';
};

@@ -67,4 +67,6 @@

if (typeof define === 'function' && typeof define.amd === 'object') {
define(waterfall); // RequireJS
if (typeof define !== 'undefined' && define.amd) {
define([], function () {
return waterfall;
}); // RequireJS
} else if (typeof module !== 'undefined' && module.exports) {

@@ -71,0 +73,0 @@ module.exports = waterfall; // CommonJS

{
"name": "async-waterfall",
"version": "0.1.4",
"version": "0.1.5",
"description": "Runs a list of async tasks, passing the results of each into the next one",

@@ -5,0 +5,0 @@ "author": {

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