babel/packages/babel-plugin-es2015-tail-call

babel-plugin-es2015-tail-call

Compile ES2015 tail call to ES5

Installation

$ npm install babel-plugin-es2015-tail-call

Usage

.babelrc

{
  "plugins": ["es2015-tail-call"]
}

Via CLI

$ babel --plugins es2015-tail-call script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["es2015-tail-call"]
});