Skip to content

Instantly share code, notes, and snippets.

@yairEO
Last active May 28, 2019 20:30
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 yairEO/30758e93ccb4a9978ba3e661e7025184 to your computer and use it in GitHub Desktop.
Save yairEO/30758e93ccb4a9978ba3e661e7025184 to your computer and use it in GitHub Desktop.
console.log emphasize first arg
console.log = ((_c) => (...args) => args.length > 1 ? _c("%c "+ args[0], 'background:indianred; color:white; border-radius:3px; padding:1px;', ...args.slice(1)) : _c(...args))(console.log);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment