0.3.8 • Published 5 years ago

mu-parser v0.3.8

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

Mu-Parser

A simple regex powered text parser system. When required in didfferent parts of your code, it retains a list of parsers created.

parsers = require('mu-parser');

// create a new parser and add an ANSI terminal escape code substitution.
parsers('color').addRule(/%[CcXx]b/, '\u001b[34m');

//later in another module...
parsers = require('mu-parser');
parsers('color').parse('%cbThis text will be blue!'); // Returns blue text.