0.1.1 • Published 4 months ago
babel-plugin-transform-beautifier v0.1.1
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()
}