| D | parseable.js | 3 const report = function (data, options) { function 8 const config = Object.assign({}, defaults, options) 12 const actions = function (data, config) { argument 25 const recommendation = getRecommendation(action, config) 78 report: actions(data, config), 83 const getRecommendation = function (action, config) { argument 88 cmd: `npm install ${isDev ? '--save-dev ' : ''}${action.module}@${action.target}`, 93 cmd: `npm update ${action.module} --depth ${action.depth}`, 99 module.exports = report
|