Require a list of modules and apply the export if it is function.
npm install reapply-list  
``shell`
npm install reapply-list --save
###### npm stats
  
###### index.js
`js
var app = {}
var reapply = require('reapply-list')
var configs = ['cors', 'basic-auth', 'router']
reapply(configs, [app], './app/config')
`
###### app/config/*.js
`jsapp
module.exports = function (app) {
// configure here.`
}
- Supports optional arguments.
- Supports optional base directory.
###### arguments
- list: (Array) list of module names or relative paths to require.[args]: (Array)
- arguments to pass to modules.[base]: (String)
- module base directory.
###### returns
- (Array)` result of applying functions..
- Use reapply.js if you need something slightly different or need more control.
> SEE: contributing.md
