Socket
Socket
Sign inDemoInstall

async-each

Package Overview
Dependencies
0
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.1 to 0.1.2

3

bower.json

@@ -5,6 +5,5 @@ {

"description": "No-bullshit, ultra-simple, 35-lines-of-code async parallel forEach function for JavaScript.",
"version": "0.1.1",
"version": "0.1.2",
"keywords": ["async", "forEach", "each"],
"main": "index.js",
"scripts": ["index.js"],
"dependencies": {},

@@ -11,0 +10,0 @@ "development": {},

@@ -0,1 +1,4 @@

# async-each 0.1.2 (7 July 2013)
* Fixed behaviour on empty arrays.
# async-each 0.1.1 (14 June 2013)

@@ -2,0 +5,0 @@ * Wrapped function in closure, enabled strict mode.

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

"description": "No-bullshit, ultra-simple, 35-lines-of-code async parallel forEach function for JavaScript.",
"version": "0.1.1",
"version": "0.1.2",
"keywords": ["async", "forEach", "each"],

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

@@ -9,2 +9,4 @@ // MIT license (by Paul Miller from http://paulmillr.com).

if (items.length === 0) return callback(undefined, items);
var transformed = new Array(items.length);

@@ -11,0 +13,0 @@ var count = 0;

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

"description": "No-bullshit, ultra-simple, 35-lines-of-code async parallel forEach function for JavaScript.",
"version": "0.1.1",
"version": "0.1.2",
"keywords": ["async", "forEach", "each"],

@@ -8,0 +8,0 @@ "homepage": "https://github.com/paulmillr/async-each/",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc