elstat/priv/frontend/src/util.js

16 lines
316 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
}
export function objectFromEntries (entries) {
return entries.reduce(
(object, [key, value]) => ({ ...object, [key]: value }),
{}
)
}