Created
August 1, 2018 19:50
-
-
Save rjhilgefort/cf6ddd9d8cda4fdcf989c96f2e962774 to your computer and use it in GitHub Desktop.
point free logger for any JS env
This file contains hidden or 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 { log } = console; | |
const trace = (tag) => (x) => { | |
log(`\n${tag}\n==================================================`); | |
log(JSON.stringify(x, 0, 2)); | |
return x; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment