Skip to content

jamiebuilds/babel-plugin-ken-wheeler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

babel-plugin-ken-wheeler

Code like you dope

Example

In:

word;
nah;

Out:

true;
false;

Installation

$ npm install babel-plugin-ken-wheeler

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["ken-wheeler"]
}

Via CLI

$ babel --plugins ken-wheeler script.js

Via Node API

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