1.1.1 • Published 10 years ago

foreach-async v1.1.1

Weekly downloads
4
License
ISC
Repository
github
Last release
10 years ago

foreach-async

Array forEach which handles asynchronous operations in Node and the browser (using Browserify, etc.)

install:

$ npm i foreach-async

Usage:

var forEach = require('foreach-async')

forEach(['a', 'b', 'c'], function (value, index, array) {
  
  // do something async
  something.async(function () {
    // signify done, passing optional result
    this.done(*result*)
  }.bind(this))

}, function (results) {
  // called after all array items have been
  // iterated, all values passed to done
  // are accessible in the 'results' array
})
1.1.1

10 years ago

1.1.0

10 years ago

1.0.0

10 years ago