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