Comparing version 1.0.3 to 1.0.4
{ | ||
"name": "eachy", | ||
"main": "eachy.js", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"homepage": "https://github.com/mmaelzer/eachy", | ||
@@ -9,3 +9,3 @@ "authors": [ | ||
], | ||
"description": "A tiny (19 lines of code) async each implementation that supports CommonJS, AMD, and VanillaJS.", | ||
"description": "A tiny (19 lines of code) serial async each/map implementation that supports CommonJS, AMD, and VanillaJS.", | ||
"moduleType": [ | ||
@@ -22,3 +22,7 @@ "amd", | ||
"async-each", | ||
"forEach" | ||
"forEach", | ||
"map", | ||
"series", | ||
"serial", | ||
"async-map" | ||
], | ||
@@ -25,0 +29,0 @@ "license": "MIT", |
@@ -17,4 +17,4 @@ (function(global) { | ||
} else { | ||
global.seriesEach= eachy; | ||
global.seriesEach = eachy; | ||
} | ||
})(this); |
{ | ||
"name": "eachy", | ||
"version": "1.0.3", | ||
"description": "a tiny (19 lines of code) serial async each module", | ||
"version": "1.0.4", | ||
"description": "a tiny (19 lines of code) serial async each/map module", | ||
"main": "eachy.js", | ||
@@ -17,3 +17,7 @@ "scripts": { | ||
"each", | ||
"forEach" | ||
"forEach", | ||
"async-map", | ||
"map", | ||
"serial", | ||
"series" | ||
], | ||
@@ -20,0 +24,0 @@ "author": "Mike Maelzer <mmaelzer@gmail.com>", |
eachy | ||
===== | ||
A tiny (19 lines of code) serial async each implementation that supports CommonJS, AMD, and VanillaJS. The minified file `eachy.min.js` is just 303 bytes. | ||
A tiny (19 lines of code) serial async each/map implementation that supports CommonJS, AMD, and VanillaJS. The minified file `eachy.min.js` is just 303 bytes. | ||
@@ -6,0 +6,0 @@ [![build status](https://secure.travis-ci.org/mmaelzer/eachy.png)](http://travis-ci.org/mmaelzer/eachy) |
5450
106