Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
xzx 2ec7739298 [Version] V.3.8 4 anos atrás
..
bin [Version] V.3.8 4 anos atrás
node_modules [Version] V.3.8 4 anos atrás
CHANGELOG [Version] V.3.8 4 anos atrás
LICENSE.BSD [Version] V.3.8 4 anos atrás
README.md [Version] V.3.8 4 anos atrás
package.json [Version] V.3.8 4 anos atrás
parser.js [Version] V.3.8 4 anos atrás

README.md

RegJSParser

Parsing the JavaScript’s RegExp in JavaScript.

Installation

npm install regjsparser

Usage

var parse = require('regjsparser').parse;

var parseTree = parse('^a'); // /^a/
console.log(parseTree);

Testing

To run the tests, run the following command:

npm test

To create a new reference file, execute…

node test/update-fixtures.js

…from the repo top directory.