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

@babel/plugin-transform-sticky-regex

Examples

In

const a = /o+/y;

Out

var a = new RegExp("o+", "y");

Installation

npm install --save-dev @babel/plugin-transform-sticky-regex

Usage

With a configuration file (Recommended)

{
  "plugins": ["@babel/plugin-transform-sticky-regex"]
}

Via CLI

babel --plugins @babel/plugin-transform-sticky-regex script.js

Via Node API

require("@babel/core").transform("code", {
  plugins: ["@babel/plugin-transform-sticky-regex"]
});
  • Examples
  • 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