Skip to content

Instantly share code, notes, and snippets.

@nem035
Created October 2, 2018 15:17
Show Gist options
  • Save nem035/f58339cd1706559e07ba397260a22157 to your computer and use it in GitHub Desktop.
Save nem035/f58339cd1706559e07ba397260a22157 to your computer and use it in GitHub Desktop.
httpGet(url, once(processValue));
function once(cb) {
var hasExecuted = false;
return function callbackWrapper() {
if (!hasExecuted) {
hasExecuted = true;
cb.apply(this, arguments);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment