Skip to content

Instantly share code, notes, and snippets.

@pcp
Created January 9, 2018 21:45
Show Gist options
  • Save pcp/75eecc0bc19e87a40a9bf247a8137000 to your computer and use it in GitHub Desktop.
Save pcp/75eecc0bc19e87a40a9bf247a8137000 to your computer and use it in GitHub Desktop.
log = new Proxy({}, {get: (x, k) => (...pass) => console.log(`%c${pass.join(' ')}`, `color: ${k}`)});
/*
// examples:
log.tomato('I am tomato');
log.chocolate('I am chocolate');
log.noExistColor('I am no exist color');
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment