2.0.1 • Published 2 years ago

babel-plugin-transform-ternary-to-if-else v2.0.1

Weekly downloads
7
License
GPL-3.0
Repository
github
Last release
2 years ago

babel-plugin-transform-ternary-to-if-else

Build Status Coverage Status

Transform ternary operators (conditional expressions) into if-else statements.

Demo

Live demo

Example

In

const val = a1 ? a2 : a3;

Out

const val = function() {
  if (a1) {
    return a2;
  }
  return a3;
}();

Installation

npm install babel-plugin-transform-ternary-to-if-else

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["transform-ternary-to-if-else"]
}

Via CLI

babel --plugins transform-ternary-to-if-else script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["transform-ternary-to-if-else"]
});