An error occurred while loading the file. Please try again.
helpers.js 202 bytes
var helpers = {
    stringToArray: function (input){
        if(input != null){
            return input.split(',');
        }else{
            return null;
};
module.exports = helpers;