innovationDriveApp/node_modules/regjsgen
2018-07-08 22:49:17 +10:00
..
LICENSE.txt added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
package.json deleted homepage in package.json 2018-07-08 22:49:17 +10:00
README.md added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
regjsgen.js added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00

RegJSGen

Generate RegExps from RegJSParsers AST.

Installation

npm install --save regjsgen

Usage

var regjsgen = require('regjsgen');
// With `regjsparser`
var regjsparser = require('regjsparser');
var regex = '^a$';
var ast = regjsparser.parse(regex);
// Modify AST
// ...
// Regenerate `RegExp`
regex = regjsgen.generate(ast);

See Also

Testing

Run the command

npm test

To create a new reference file, execute

node test/update-fixture.js

from the repo top directory.

Support

Tested in Node.js 0.8.26~0.10.30.

Author

twitter/demoneaux
Benjamin Tan

Contributors

twitter/mathias
Mathias Bynens