Skip to content

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

License

Notifications You must be signed in to change notification settings

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

Repository files navigation

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

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published