babel-plugin-minify-flip-comparisons
**Note:** while this plugin doesn’t shorten the output in any way, it does optimize it for repetition-based compression algorithms such as gzip.
Last updated 7 years ago by boopathi .
MIT · Repository · Bugs · Original npm
$ cnpm install babel-plugin-minify-flip-comparisons 
SYNC missed versions from official npm registry.

babel-plugin-minify-flip-comparisons

Note: while this plugin doesn’t shorten the output in any way, it does optimize it for repetition-based compression algorithms such as gzip.

Example

In

const foo = a === 1;
if (bar !== null) {
  var baz = 0;
}

Out

const foo = 1 === a;
if (null !== bar) {
  var baz = 0;
}

Installation

npm install babel-plugin-minify-flip-comparisons

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["minify-flip-comparisons"]
}

Via CLI

babel --plugins minify-flip-comparisons script.js

Via Node API

require("@babel/core").transform("code", {
  plugins: ["minify-flip-comparisons"]
});

Current Tags

  • 0.4.3                                ...           latest (7 years ago)

2 Versions

  • 0.5.0-alpha.9                                ...           7 years ago
  • 0.4.3                                ...           7 years ago
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (1)
Dev Dependencies (0)
None
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org