Skip to content

gzzhanghao/babel-plugin-transform-beautifier

Repository files navigation

babel-plugin-transform-beautifier

A babel plugin that beautifies JavaScript

Usage

npm i --save-dev babel-plugin-transform-beautifier

Then add the plugin to your babel config:

// babel.config.js
module.exports = {
  plugins: [
    'babel-plugin-transform-beautifier'
  ]
}

Example

The following code:

testA ? consequent() : testB && alternate()

Will be transformed to:

if (testA) {
  consequent()
} else if (testB) {
  alternate()
}