elstat/priv/frontend/src/util.js

9 lines
170 B
JavaScript
Raw Normal View History

2018-07-16 04:04:43 +00:00
export function log (...args) {
2018-07-14 02:01:24 +00:00
console.log(
'%c[elstat]%c',
'color: purple; font-weight: bold',
'color: inherit; font-weight: inherit',
...args,
2018-07-16 04:04:43 +00:00
)
2018-07-14 02:01:24 +00:00
}