const helpers = {
  stringToArray: function (input: string) {
    if (!input) { return null }
    return input.split(',')
  }
}

export { helpers }