Package Exports
- regjsparser
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (regjsparser) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
RegJSParser
Parsing the JavaScript's RegExp in JavaScript.
Installation
npm install regjsparserUsage
var parse = require('regjsparser').parse;
var parseTree = parse('^a'); // /^a/
console.log(parseTree);
/*
Which prints:
{
"type": "alternative",
"terms": [
{
"type": "assertion",
"sub": "start",
"from": 0,
"to": 1,
"raw": "^"
},
{
"type": "character",
"char": "a",
"from": 1,
"to": 2,
"raw": "a"
}
],
"from": 0,
"to": 2,
"raw": "^a",
"lastMatchIdx": 0
}
*/Testing
Run the command
npm testTo create a new reference file, execute
node test/create_ref.jsfrom the repo top directory.