drowsy-probius / twitch-icon-selector

Found shorthand type coercions JS-0066
Anti-pattern
Minor
a year ago2 years old
use String(text) instead.
254     */
255    try
256    {
257      currentChatText = text + "";258      makeStatsFromInput(currentChatText);
259      toggleSelector(false);
260    }
use String(text) instead.
199  if(!inputArea || !iconSelectorRoot) return;
200  const text = inputArea.innerText.trimStart();
201  const isInputChanged = (currentChatText !== text);
202  currentChatText = text + "";203  if(e.key === "Escape")
204  {
205    try