findOption()

in commands/run.js [181:189]


  findOption(short) {
    for (const [key, option] of Object.entries(this.options)) {
      if (option.short === short) {
        return key;
      }
    }

    return null;
  }