babel-plugin-yui
v0.0.7
Published
Babel plugin for YUI
Readme
babel-plugin-yui
Support for YUI
Example
In
// input codeOut
"use strict";
// output codeInstallation
$ npm install babel-plugin-yuiUsage
Via .babelrc (Recommended)
.babelrc
{
"plugins": ["yui"]
}Via CLI
$ babel --plugins yui script.jsVia Node API
require("babel-core").transform("code", {
plugins: ["yui"]
});