babel/packages/babel-preset-flow
2017-09-11 23:01:41 -04:00
..
2017-06-27 12:15:00 -05:00
2017-03-25 21:46:16 -04:00
2017-09-11 23:01:41 -04:00
2017-02-09 16:45:38 -08:00

babel-preset-flow

Babel preset for all Flow plugins.

This preset includes the following plugins:

Example

In

function foo(one: any, two: number, three?): string {}

Out

function foo(one, two, three) {}

Installation

npm install --save-dev babel-preset-flow

Usage

.babelrc

{
  "presets": ["flow"]
}

Via CLI

babel --presets flow script.js

Via Node API

require("babel-core").transform("code", {
  presets: ["flow"]
});