minifyify
Version:
Minify your browserify bundles without losing the sourcemap
23 lines (15 loc) • 426 B
JavaScript
// submodule.js NOT_MINIFIED
var subsubmodule = require('../dirB/subsubmodule');
module.exports = {
createString: function (mathFunction) {
var date
, someNumber;
date = subsubmodule.getTheDate(function () {
var potatoes;
potatoes = ['fried', 'baked', 'sliced'];
return potatoes.join(mathFunction());
});
someNumber = mathFunction();
return date + ' ' + someNumber;
}
};