PHP 8.2.30
Preview: README.md Size: 788 B
/home/byroehnu/easepay.easetack.com/node_modules/regjsparser/README.md

# RegJSParser

Parsing the JavaScript's RegExp in JavaScript.

## Installation

```bash
npm install regjsparser
```

## Usage

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

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

// Toggle on/off additional features:
var parseTree = parse('^a', '', {
  // SEE: https://github.com/jviereck/regjsparser/pull/78
  unicodePropertyEscape: true,

  // SEE: https://github.com/jviereck/regjsparser/pull/83
  namedGroups: true,

  // SEE: https://github.com/jviereck/regjsparser/pull/89
  lookbehind: true
});
console.log(parseTree);
```

## Testing

To run the tests, run the following command:

```bash
npm test
```

To create a new reference file, execute…

```bash
node test/update-fixtures.js
```

…from the repo top directory.

Directory Contents

Dirs: 1 × Files: 6

Name Size Perms Modified Actions
bin DIR
- drwxr-xr-x 2026-03-14 01:49:20
Edit Download
127 B lr--r--r-- 2026-03-14 01:49:20
Edit Download
1.27 KB lrw-r--r-- 2026-02-28 00:26:44
Edit Download
1.15 KB lrw-r--r-- 2026-02-28 00:27:14
Edit Download
3.73 KB lrw-r--r-- 2026-02-28 00:27:32
Edit Download
63.19 KB lrw-r--r-- 2026-02-28 00:27:04
Edit Download
788 B lrw-r--r-- 2026-02-28 00:27:24
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).