Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save ufocoder/08c7b289d0e0c856bb3ab6f57c6c19c0 to your computer and use it in GitHub Desktop.

Select an option

Save ufocoder/08c7b289d0e0c856bb3ab6f57c6c19c0 to your computer and use it in GitHub Desktop.
function higherOrderNodeCallback (onSuccess, onError) {
function nodeCallback (err, thingIWant) {
if (err) {
onError(err);
} else {
onSuccess(thingIWant);
}
}
return nodeCallback;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment