|  | vor 2 Jahren | |
|---|---|---|
| .. | ||
| lib | vor 2 Jahren | |
| .npmignore | vor 2 Jahren | |
| README.md | vor 2 Jahren | |
| package.json | vor 2 Jahren | |
Babel preset for all Flow plugins.
This preset includes the following plugins:
In
function foo(one: any, two: number, three?): string {}
Out
function foo(one, two, three) {}
npm install --save-dev babel-preset-flow
.babelrc (Recommended).babelrc
{
  "presets": ["flow"]
}
babel --presets flow script.js
require("babel-core").transform("code", {
  presets: ["flow"]
});