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