Skip to content

Instantly share code, notes, and snippets.

@jlfwong
Created October 20, 2016 00:56
Show Gist options
  • Save jlfwong/5c500f9ed4cfe1789d9416cf0a87803c to your computer and use it in GitHub Desktop.
Save jlfwong/5c500f9ed4cfe1789d9416cf0a87803c to your computer and use it in GitHub Desktop.
// Handy for debugging sometimes
function tap(fn) {
return function() {
const result = fn.apply(this, arguments);
console.log(Array.prototype.slice.call(arguments), '->', result);
return result;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment