mu-parser

0.3.8 • Public • Published

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.

/mu-parser/

    Package Sidebar

    Install

    npm i mu-parser

    Weekly Downloads

    0

    Version

    0.3.8

    License

    MIT

    Unpacked Size

    1.03 MB

    Total Files

    33

    Last publish

    Collaborators

    • lcanady