Skip to content

Instantly share code, notes, and snippets.

View philippe-gregoire's full-sized avatar
:octocat:
Gitting..

Philippe Gregoire philippe-gregoire

:octocat:
Gitting..
View GitHub Profile
const log = new Proxy({}, {
get: (_, colour) => function() {
console.log(`%c ${[].slice.call(arguments).join(' ')}`, `color: ${colour}`)
}
})
// example
log.tomato('I am tomato')
log.chocolate('I am chocolate')
log.cornflowerblue('I am cornflowerblue')