Package Exports
- babel-plugin-transform-regexp-constructors
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 (babel-plugin-transform-regexp-constructors) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
babel-plugin-transform-regexp-constructors
This changes RegExp constructors into literals if the RegExp arguments are strings.
Example
In
const foo = 'ab+';
var a = new RegExp(foo+'c', 'i');Out
const foo = 'ab+';
var a = /ab+c/i;Installation
npm install babel-plugin-transform-regexp-constructorsUsage
Via .babelrc (Recommended)
.babelrc
{
"plugins": ["transform-regexp-constructors"]
}Via CLI
babel --plugins transform-regexp-constructors script.jsVia Node API
require("@babel/core").transform("code", {
plugins: ["transform-regexp-constructors"]
});