module.exports= { main: function(postData) { return new Promise(function(resolve, reject) { Promise.all([utils.include("./admin/addCategory.html"), printCategories(), processPost(postData)]).then(function(html) { resolve("
" + html.join('') + "
"); }).catch(function(error) { console.log("error in addCategory.js"); reject(error); }) }); } };