2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2025-01-27 00:58:31 +00:00
frappe_docker/frappe-bench/node_modules/babel-plugin-minify-flip-comparisons
2017-07-31 15:51:51 +05:30
..
2017-07-31 15:51:51 +05:30
2017-07-31 15:51:51 +05:30
2017-07-31 15:51:51 +05:30
2017-07-31 15:51:51 +05:30

babel-plugin-minify-flip-comparisons

Note: while this plugin doesnt 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

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