2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2025-01-27 09:08:31 +00:00
2017-07-31 15:51:51 +05:30

699 B

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

Usage

.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"]
});