elstat/priv/frontend/src/util.js
2018-07-15 21:04:43 -07:00

8 lines
170 B
JavaScript

export function log (...args) {
console.log(
'%c[elstat]%c',
'color: purple; font-weight: bold',
'color: inherit; font-weight: inherit',
...args,
)
}