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