Babel
  • Docs
  • Setup
  • Try it out
  • Videos
  • Blog
  • Donate
  • Team
  • GitHub
Edit

babel-plugin-transform-regexp-constructors

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

With a configuration file (Recommended)

{
  "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"]
});
  • Example
  • Installation
  • Usage
    • With a configuration file (Recommended)
    • Via CLI
    • Via Node API
Babel
Docs
Learn ES2015
Community
VideosUser ShowcaseStack OverflowSlack ChannelTwitter
More
BlogGitHub OrgGitHub RepoWebsite RepoOld 6.x SiteOld 5.x Site