npm.io
1.0.1 • Published 7 years ago

sprang-styled-console

Licence
MIT
Version
1.0.1
Deps
0
Size
14 kB
Vulns
0
Weekly
0

sprang-styled-console

Output to chrome console with style

Example

import {styledConsoleLog, getRedString, getGreenString} from 'sprang-styled-console';

let redMsg = getRedString('Hello');
let greenMsg = getGreenString('World');

let data={
    value:5;
}

styledConsoleLog(redMsg + ' ' + greenMsg, data);