Last active
August 29, 2015 14:00
-
-
Save kidtronnix/728db7ab8a6afaaa234c to your computer and use it in GitHub Desktop.
sane-async-each.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Okay I have some shit i need to do in order | |
// FACK | |
// it's cool just do this... | |
async.each( /*array*/ obects_for_the_block, /*fun()*/ chopping_block, function(err){ | |
// EXPLANATION | |
// chopping_block is the function that is performed on every object in | |
// objects_for_the_block. | |
// imagine metaphor. understand. | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment