1.0.1 • Published 9 years ago

babel-plugin-constant-folding v1.0.1

Weekly downloads
90,403
License
MIT
Repository
github
Last release
9 years ago

babel-plugin-constant-folding

Compile static constants (ie. code that we can statically determine to be constant at runtime)

Installation

$ npm install babel-plugin-constant-folding

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["constant-folding"]
}

Via CLI

$ babel --plugins constant-folding script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["constant-folding"]
});