lib/irc: remove unnecessary non-breaking-space case

Handled by the default case already.
This commit is contained in:
Simon Ser 2022-02-25 11:37:18 +01:00
parent 86b1030b7a
commit 221b1b6356

View file

@ -270,8 +270,6 @@ function isWordBoundary(ch) {
case "_":
case "|":
return false;
case "\u00A0":
return true;
default:
return !alphaNum.test(ch);
}