Created
November 2, 2019 22:15
-
-
Save valkheim/8c6efbff023be6ccf61a508c1f45c066 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const DEBUG = true; | |
const logger = (fn, label) => { | |
if (!DEBUG) | |
return fn | |
return function() { | |
console.debug('='.repeat(3), !!fn.name ? fn.name + ': ' + label : label) | |
console.debug(arguments) | |
console.debug(fn.toString()) | |
fn.apply(this, arguments) | |
} | |
} | |
const myFunction = logger((arg1, arg2, arg3) => { | |
console.log("called with", arg1, arg2, arg3) | |
}, "the function") | |
myFunction(1, 2, 3) | |
const myOtherFunction = logger(function myOtherFunction(arg1, arg2, arg3) { | |
console.log("called with", arg1, arg2, arg3) | |
}, "the other function") | |
myOtherFunction(1, 2, 3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment