octylFractal / babel-plugin-simplify-constant

Simplifies some constant expressions.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

babel-plugin-simplify-constant

Replaces some constant expressions with their result.

Example

Input:

const aTrue = !0;
const aFalse = !1;

Output:

const aTrue = true;
const aFalse = false;

About

Simplifies some constant expressions.


Languages

Language:JavaScript 100.0%