Нет описания

FFIB: 11e3a9652a first лет %!s(int64=7): %!d(string=назад)
..
bin 11e3a9652a first лет %!s(int64=7): %!d(string=назад)
node_modules 11e3a9652a first лет %!s(int64=7): %!d(string=назад)
CHANGELOG 11e3a9652a first лет %!s(int64=7): %!d(string=назад)
LICENSE.BSD 11e3a9652a first лет %!s(int64=7): %!d(string=назад)
README.md 11e3a9652a first лет %!s(int64=7): %!d(string=назад)
package.json 11e3a9652a first лет %!s(int64=7): %!d(string=назад)
parser.js 11e3a9652a first лет %!s(int64=7): %!d(string=назад)

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.