1
0
mirror of https://github.com/S2-/minifyfromhtml.git synced 2025-08-03 04:10:04 +02:00
Files
minifyfromhtml/node_modules/babel-plugin-transform-regexp-constructors/README.md
2018-05-05 13:54:07 +02:00

52 lines
700 B
Markdown

# babel-plugin-transform-regexp-constructors
This changes RegExp constructors into literals if the RegExp arguments are strings.
## Example
**In**
```javascript
const foo = 'ab+';
var a = new RegExp(foo+'c', 'i');
```
**Out**
```javascript
const foo = 'ab+';
var a = /ab+c/i;
```
## Installation
```sh
npm install babel-plugin-transform-regexp-constructors
```
## Usage
### Via `.babelrc` (Recommended)
**.babelrc**
```json
{
"plugins": ["transform-regexp-constructors"]
}
```
### Via CLI
```sh
babel --plugins transform-regexp-constructors script.js
```
### Via Node API
```javascript
require("@babel/core").transform("code", {
plugins: ["transform-regexp-constructors"]
});
```