Skip to content

Instantly share code, notes, and snippets.

@nevyn
Created February 4, 2014 11:20
Show Gist options
  • Save nevyn/8801915 to your computer and use it in GitHub Desktop.
Save nevyn/8801915 to your computer and use it in GitHub Desktop.
foo(function(value) {
bar(value, function(value2) {
console.log("hey we're done", value2);
});
});
// becomes
var value = foo().wait();
var value2 = bar(value).wait();
console.log("hey we're done", value2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment