Skip to content

Instantly share code, notes, and snippets.

@bhubr
Created December 26, 2018 10:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bhubr/2192befcc30b1c4670d123b283c0a15c to your computer and use it in GitHub Desktop.
Save bhubr/2192befcc30b1c4670d123b283c0a15c to your computer and use it in GitHub Desktop.
passLog
// Without label
const passLog = obj => { console.log(obj); return obj; };
// With label
const passLog = label => obj => { console.log(label, obj); return obj; };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment