Skip to content

Instantly share code, notes, and snippets.

@kevinkace
Last active August 29, 2015 14:12
Show Gist options
  • Save kevinkace/996ff5c80207cf55db49 to your computer and use it in GitHub Desktop.
Save kevinkace/996ff5c80207cf55db49 to your computer and use it in GitHub Desktop.
module.exports = [
function(r,s,c) {
log("1");
c();
},
function(r,s,c) {
c();
log("2");
c();
},
function(r,s,c) {
return c();
log("3");
},
function(r,s,c) {
log("4");
c();
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment