Skip to content

Instantly share code, notes, and snippets.

@enkot
Last active August 20, 2018 09:50
Show Gist options
  • Save enkot/c8d60e2de51a50b8d754bb5b045b8c87 to your computer and use it in GitHub Desktop.
Save enkot/c8d60e2de51a50b8d754bb5b045b8c87 to your computer and use it in GitHub Desktop.
function log(func) {
return function() {
func()
console.log('Function called')
}
}
function getData() { ... }
getData = log(getData)
getData() // in console: Function called
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment