Created
January 9, 2018 21:45
-
-
Save pcp/75eecc0bc19e87a40a9bf247a8137000 to your computer and use it in GitHub Desktop.
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
| 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