var helpers = { stringToArray: function (input){ if(input != null){ return input.split(','); }else{ return null; } } }; module.exports = helpers;