parseGathererNames()

in src/core.js [190:198]


  parseGathererNames(gathererName) {
    if (!gathererName) return [];

    if (Array.isArray(gathererName)) {
      return gathererName;
    } else {
      return gathererName.split(',');
    }
  }