0.4.77 • Published 5 years ago

wloggerfromasciitocss v0.4.77

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

wLoggerFromAsciiToCss Build Status

Class to transform ansi styled input into css styled output supported by the browser's console.

Installation

npm install wloggerfromasciitocss
Example #1
var l = new _.LoggerFromAsciiToCss({ output : console });
l.log( _.color.strFormatForeground( 'text', 'red' ) );
// %ctext color:rgba(255,51,0,1);