Skip to content

Instantly share code, notes, and snippets.

@dogmatic69
Created February 7, 2017 10:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dogmatic69/cd8d948d6d3df276bb6668701aef8f42 to your computer and use it in GitHub Desktop.
Save dogmatic69/cd8d948d6d3df276bb6668701aef8f42 to your computer and use it in GitHub Desktop.
// method works
let asyncForEach = (iterator, fn, cb) => {
// code here
};
module.exports = asyncForEach;
// method does not work
module.exports = (iterator, fn, cb) => {
// code here
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment