function getCodeStyleName()

in src/components/ShellCommand/index.tsx [48:53]


  function getCodeStyleName(token, index): string {
    for (const key in rules) {
      const matched = rules[key](token, index);
      if (matched) return key;
    }
  }