mirror of
https://git.sr.ht/~emersion/gamja
synced 2024-11-14 19:25:26 -05:00
lib/irc: remove unnecessary non-breaking-space case
Handled by the default case already.
This commit is contained in:
parent
86b1030b7a
commit
221b1b6356
1 changed files with 0 additions and 2 deletions
|
@ -270,8 +270,6 @@ function isWordBoundary(ch) {
|
|||
case "_":
|
||||
case "|":
|
||||
return false;
|
||||
case "\u00A0":
|
||||
return true;
|
||||
default:
|
||||
return !alphaNum.test(ch);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue