UNPKG

lx-scan

Version:

License eXtension to find 5-tuples of all installed packages: name, version, project home page, license (e. g. Apache v2, BSD) and required notice. It includes a GUI to edit information for each package and to enter information if necessary.

13 lines (11 loc) 252 B
// Note that the order determines what order the middleware is applied var mware = { multer: require('./mulware') }; module.exports = function(app) { for(var item in mware) { if(mware.hasOwnProperty(item)) { mware[item](app); } } };