Skip to content

Instantly share code, notes, and snippets.

/traceFn.js Secret

Created April 19, 2017 04:17
Show Gist options
  • Save anonymous/037815400de86f03144c5eecbe517011 to your computer and use it in GitHub Desktop.
Save anonymous/037815400de86f03144c5eecbe517011 to your computer and use it in GitHub Desktop.
const traceFn = (fn, context) => function () {
console.trace(`${fn.name} called with arguments: `, arguments);
return fn.apply(context || this, arguments);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment