You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current implementation first create an array of lowercase strings then calls includes on the lowercase channel name. Instead use array.some() so that only strings up to a matching one would be put to lowercase (plus avoids new array allocation)Done
The text was updated successfully, but these errors were encountered:
Current implementation first create an array of lowercase strings then calls includes on the lowercase channel name. Instead use array.some() so that only strings up to a matching one would be put to lowercase (plus avoids new array allocation)DoneThe text was updated successfully, but these errors were encountered: