Skip to content

Instantly share code, notes, and snippets.

@rjhilgefort
Created August 1, 2018 19:50
Show Gist options
  • Save rjhilgefort/cf6ddd9d8cda4fdcf989c96f2e962774 to your computer and use it in GitHub Desktop.
Save rjhilgefort/cf6ddd9d8cda4fdcf989c96f2e962774 to your computer and use it in GitHub Desktop.
point free logger for any JS env
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