Não pode escolher mais do que 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 há 4 anos
..
bin [Version] V.3.8 há 4 anos
node_modules [Version] V.3.8 há 4 anos
CHANGELOG [Version] V.3.8 há 4 anos
LICENSE.BSD [Version] V.3.8 há 4 anos
README.md [Version] V.3.8 há 4 anos
package.json [Version] V.3.8 há 4 anos
parser.js [Version] V.3.8 há 4 anos

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.