1.1.1 • Published 8 years ago

babel-plugin-true-to-false-yafim v1.1.1

Weekly downloads
9
License
-
Repository
-
Last release
8 years ago

babel-plugin-true-to-false-yafim

Example

In

// input code

Out

"use strict";

// output code

Installation

$ npm install babel-plugin-true-to-false-yafim

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["true-to-false-yafim"]
}

Via CLI

$ babel --plugins true-to-false-yafim script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["true-to-false-yafim"]
});