项目原始demo,不改动
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
Це архівний репозитарій. Ви можете переглядати і клонувати файли, але не можете робити пуш або відкривати питання/запити.
 
 
 
 
xzx 2ec7739298 [Version] V.3.8 4 роки тому
..
bin [Version] V.3.8 4 роки тому
node_modules [Version] V.3.8 4 роки тому
CHANGELOG [Version] V.3.8 4 роки тому
LICENSE.BSD [Version] V.3.8 4 роки тому
README.md [Version] V.3.8 4 роки тому
package.json [Version] V.3.8 4 роки тому
parser.js [Version] V.3.8 4 роки тому

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.