babel-plugin-transform-regexp-constructors

0.4.3 • Public • Published

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-constructors --save-dev

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["transform-regexp-constructors"]
}

Via CLI

babel --plugins transform-regexp-constructors script.js

Via Node API

require("@babel/core").transform("code", {
  plugins: ["transform-regexp-constructors"]
});

Readme

Keywords

Package Sidebar

Install

npm i babel-plugin-transform-regexp-constructors

Weekly Downloads

383,892

Version

0.4.3

License

MIT

Unpacked Size

2.62 kB

Total Files

5

Last publish

Collaborators

  • nicolo-ribaudo
  • boopathi
  • hzoo
  • vignesh.shanmugam
  • loganfsmyth