Skip to content

Instantly share code, notes, and snippets.

@joubertnel
Created January 11, 2012 22:15
Show Gist options
  • Save joubertnel/1597102 to your computer and use it in GitHub Desktop.
Save joubertnel/1597102 to your computer and use it in GitHub Desktop.
parallel map (pmap) over file names, reading them asynchronously
function readSource(after) {
console.log('Reading source files...');
settings.src.pmap(fs.readFile, function(err, data, filename) {
return {'file': filename,
'data': data};
}, after);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment