Skip to content

Instantly share code, notes, and snippets.

@DavidDurman
Created January 21, 2013 13:30
Show Gist options
  • Save DavidDurman/4586052 to your computer and use it in GitHub Desktop.
Save DavidDurman/4586052 to your computer and use it in GitHub Desktop.
function getData(callback) {
callAsync(function(data) {
callback(data);
})
}
getData(function done() { /* ... */ });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment