2.0.0 • Published 10 years ago
declareify v2.0.0
Declareify
Browserify transform to declare undeclare module.exports variables
This is a very simple transform that turns this:
module.exports = myCoolModuleName = function () {
...
}Into this:
var myCoolModuleName
module.exports = myCoolModuleName = function () {
...
}Installation
npm install declareifyUsage
browserify ... -t declareifyOr:
// package.json
...
browserify: {
transform: [ 'declareify' ]
}
...Contributions / Issues
Please feel free to open an issue or a PR if something's broken, or if you'd like some specific features added.
License
MIT