Open in Web IDE
Quickly and easily edit multiple files in your project.
Edit
Edit this file only.
var helpers = {
stringToArray: function (input){
if(input != null){
return input.split(',');
}else{
return null;
}
};
module.exports = helpers;