Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@dramaorg/aperiam-corporis
Advanced tools
[![npm version](https://img.shields.io/npm/v/@dramaorg/aperiam-corporis.svg)](https://www.npmjs.com/package/@dramaorg/aperiam-corporis) [![Downloads/month](https://img.shields.io/npm/dm/@dramaorg/aperiam-corporis.svg)](http://www.npmtrends.com/@dramaorg/a
A regular expression parser for ECMAScript.
$ npm install @dramaorg/aperiam-corporis
import {
AST,
RegExpParser,
RegExpValidator,
RegExpVisitor,
parseRegExpLiteral,
validateRegExpLiteral,
visitRegExpAST
} from "@dramaorg/aperiam-corporis"
Parse a given regular expression literal then make AST object.
This is equivalent to new RegExpParser(options).parseLiteral(source)
.
source
(string | RegExp
) The source code to parse.options?
(RegExpParser.Options
) The options to parse.Validate a given regular expression literal.
This is equivalent to new RegExpValidator(options).validateLiteral(source)
.
source
(string
) The source code to validate.options?
(RegExpValidator.Options
) The options to validate.Visit each node of a given AST.
This is equivalent to new RegExpVisitor(handlers).visit(ast)
.
ast
(AST.Node
) The AST to visit.handlers
(RegExpVisitor.Handlers
) The callbacks.options?
(RegExpParser.Options
) The options to parse.Parse a regular expression literal.
source
(string
) The source code to parse. E.g. "/abc/g"
.start?
(number
) The start index in the source code. Default is 0
.end?
(number
) The end index in the source code. Default is source.length
.Parse a regular expression pattern.
source
(string
) The source code to parse. E.g. "abc"
.start?
(number
) The start index in the source code. Default is 0
.end?
(number
) The end index in the source code. Default is source.length
.flags?
({ unicode?: boolean, unicodeSets?: boolean }
) The flags to enable Unicode mode, and Unicode Set mode.Parse a regular expression flags.
source
(string
) The source code to parse. E.g. "gim"
.start?
(number
) The start index in the source code. Default is 0
.end?
(number
) The end index in the source code. Default is source.length
.options
(RegExpValidator.Options
) The options to validate.Validate a regular expression literal.
source
(string
) The source code to validate.start?
(number
) The start index in the source code. Default is 0
.end?
(number
) The end index in the source code. Default is source.length
.Validate a regular expression pattern.
source
(string
) The source code to validate.start?
(number
) The start index in the source code. Default is 0
.end?
(number
) The end index in the source code. Default is source.length
.flags?
({ unicode?: boolean, unicodeSets?: boolean }
) The flags to enable Unicode mode, and Unicode Set mode.Validate a regular expression flags.
source
(string
) The source code to validate.start?
(number
) The start index in the source code. Default is 0
.end?
(number
) The end index in the source code. Default is source.length
.handlers
(RegExpVisitor.Handlers
) The callbacks.Validate a regular expression literal.
ast
(AST.Node
) The AST to visit.Welcome contributing!
Please use GitHub's Issues/PRs.
npm test
runs tests and measures coverage.npm run build
compiles TypeScript source code to index.js
, index.js.map
, and index.d.ts
.npm run clean
removes the temporary files which are created by npm test
and npm run build
.npm run lint
runs ESLint.npm run update:test
updates test fixtures.npm run update:ids
updates src/unicode/ids.ts
.npm run watch
runs tests with --watch
option.FAQs
[![npm version](https://img.shields.io/npm/v/@dramaorg/aperiam-corporis.svg)](https://www.npmjs.com/package/@dramaorg/aperiam-corporis) [![Downloads/month](https://img.shields.io/npm/dm/@dramaorg/aperiam-corporis.svg)](http://www.npmtrends.com/@dramaorg/a
The npm package @dramaorg/aperiam-corporis receives a total of 6 weekly downloads. As such, @dramaorg/aperiam-corporis popularity was classified as not popular.
We found that @dramaorg/aperiam-corporis demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.