pj / babel-plugin-transform-switch-with

Babel plugin for transforming switch with statement

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

babel-plugin-transform-switch-with

Installation

$ npm install babel-plugin-transform-switch-with

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["transform-switch-with"]
}

Via CLI

$ babel --plugins transform-switch-with script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["transform-switch-with"]
});

About

Babel plugin for transforming switch with statement


Languages

Language:JavaScript 100.0%