šŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →
Socket
Sign inDemoInstall
Socket

babel-plugin-transform-minify-booleans

Package Overview
Dependencies
Maintainers
5
Versions
90
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-transform-minify-booleans

Turn boolean literals into !0 for true and !1 for false.

6.9.4
latest
Source
npm
Version published
Maintainers
5
Created
Source

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-dev

Usage

.babelrc

{
  "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"]
});

Keywords

babel-plugin

FAQs

Package last updated on 14 May 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts