Skip to content

Instantly share code, notes, and snippets.

@cjpartridgeb
Created June 4, 2013 11:45
Show Gist options
  • Save cjpartridgeb/5705336 to your computer and use it in GitHub Desktop.
Save cjpartridgeb/5705336 to your computer and use it in GitHub Desktop.
wathek
function check(id) {
return function(article, callback) {
// scope with id
// and the article itself
};
}
exports.checkAll = function (d, callback) {
async.each(d.articles,
check(d.id),
function(err) {
callback(null, "OK");
}
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment