A babel plugin that beautifies javascripts
npm install babel-plugin-transform-beautifierA babel plugin that beautifies JavaScript
``bash`
npm i --save-dev babel-plugin-transform-beautifier
Then add the plugin to your babel config:
`javascript`
// babel.config.js
module.exports = {
plugins: [
'babel-plugin-transform-beautifier'
]
}
The following code:
`javascript`
testA ? consequent() : testB && alternate()
Will be transformed to:
`javascript``
if (testA) {
consequent()
} else if (testB) {
alternate()
}