unflowify

Browserify transform for removing Flow type annotations.


Keywords
browserify, browserify-transform, flow, flowtype
License
BSD-3-Clause
Install
npm install unflowify@1.0.1

Documentation

unflowify

This Browserify transform will remove Flow type annotations during using flow-remove-types.

Install

npm install --save unflowify

Command Line

browserify -t unflowify main.js

Browserify API

var unflowify = require('unflowify')

var b = browserify()
b.add('input.js')
b.transform(unflowify)