Babel
  • Docs
  • Setup
  • Try it out
  • Videos
  • Blog
  • Donate
  • Team
  • GitHub
Edit

babel-plugin-transform-minify-booleans

Example

In

true;
false;

Out

!0;
!1;

Installation

npm install babel-plugin-transform-minify-booleans --save-dev

Usage

With a configuration file (Recommended)

{
  "plugins": ["transform-minify-booleans"]
}

Via CLI

babel --plugins transform-minify-booleans script.js

Via Node API

require("@babel/core").transform("code", {
  plugins: ["transform-minify-booleans"]
});
  • Example
  • Installation
  • Usage
    • With a configuration file (Recommended)
    • Via CLI
    • Via Node API
Babel
Docs
Learn ES2015
Community
VideosUser ShowcaseStack OverflowSlack ChannelTwitter
More
BlogGitHub OrgGitHub RepoWebsite RepoOld 6.x SiteOld 5.x Site