UNPKG

clogz

Version:

Better way to console.log! Use logz(string) instead of console.log(string) , and get beautiful logs that are easy to find and read with background colours and font names

4 lines (3 loc) 117 B
export default function clogz(message) { return console.log(`%c${message}`, "background: #222; color: #bada55"); }