Package Exports
- babel-plugin-transform-minify-booleans
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (babel-plugin-transform-minify-booleans) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
babel-plugin-transform-minify-booleans
This plugin allows Babel to transform boolean literals into !0 for true and !1 for false.
Example
In
true;
false;Out
!0;
!1;Installation
npm install babel-plugin-transform-minify-booleans --save-devUsage
Via .babelrc (Recommended)
.babelrc
{
"plugins": ["transform-minify-booleans"]
}Via CLI
babel --plugins transform-minify-booleans script.jsVia Node API
require("@babel/core").transform("code", {
plugins: ["transform-minify-booleans"]
});