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