Skip to content

Instantly share code, notes, and snippets.

@ugitch
Last active May 22, 2019 17:09
Show Gist options
  • Save ugitch/a294ce3401a60c820e859c5e2b5deb86 to your computer and use it in GitHub Desktop.
Save ugitch/a294ce3401a60c820e859c5e2b5deb86 to your computer and use it in GitHub Desktop.
Run the function with the debugger
// with spread operator
function runWithDebugger(callback, argsForCallback) {
debugger;
if (argsForCallback !== undefined && Array.isArray(argsForCallback)) {
return callback(...argsForCallback);
} else {
return callback();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment