Browserify transform for removing Flow type annotations.
npm install unflowifyunflowify
=========
This Browserify transform will remove
Flow type annotations during using flow-remove-types.
```
npm install --save unflowify
Command Line
``
browserify -t unflowify main.js
Browserify API
`js
var unflowify = require('unflowify')
var b = browserify()
b.add('input.js')
b.transform(unflowify)
``