
Security News
TC39 Advances 11 Proposals for Math Precision, Binary APIs, and More
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.
requires-regex
Advanced tools
Regular expression for matching javascript require statements.
Please consider following this project's author, Jon Schlinkert, and consider starring the project to show your :heart: and support.
Install with npm:
$ npm install --save requires-regex
THe main export is a function that must be called. This ensures that a new regex is returned each time the function is called.
const regex = require('requires-regex')();
const match = regex.exec('const foo = require(\'@bar/baz\');');
console.log(match);
// [ 'const foo = require(\'@bar/baz\');',
// undefined,
// 'foo',
// '\'',
// '@bar/baz',
// 'bar',
// 'baz',
// index: 0,
// input: 'const foo = require(\'@bar/baz\');' ]
Match results
0
- the full match1
- require statements inside quoted strings, otherwise undefined.2
- variable name before require()
, if defined, otherwise undefined3
- leading quote inside require()
, this is used as a reference to match ends on a trailing quote of the same type4
- the full name inside the require()
statement. For example, in require("@foo/bar")
, the full name is @foo/bar
.5
- the first segment of a scoped name. For example, foo
in @foo/bar
. Otherwise undefined.6
- the second segment of a scoped name. For example, bar
in @foo/bar
. Otherwise undefined.Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
$ npm install && npm test
(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)
To generate the readme, run the following command:
$ npm install -g verbose/verb#dev verb-generate-readme && verb
You might also be interested in these projects:
Commits | Contributor |
---|---|
22 | jonschlinkert |
1 | alvinsight |
Jon Schlinkert
Copyright © 2018, Jon Schlinkert. Released under the MIT License.
This file was generated by verb-generate-readme, v0.6.0, on April 15, 2018.
FAQs
Regular expression for matching javascript require statements.
The npm package requires-regex receives a total of 35,620 weekly downloads. As such, requires-regex popularity was classified as popular.
We found that requires-regex demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
TC39 advances 11 JavaScript proposals, with two moving to Stage 4, bringing better math, binary APIs, and more features one step closer to the ECMAScript spec.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.