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
This code is supposed to remove all wildcards at the beginning and end of a string (because a search for /.*foo.*/ is the same as /foo/, but the former is much slower in JS), but it doesn't correctly handle a search term "foo**".
The text was updated successfully, but these errors were encountered:
This code is supposed to remove all wildcards at the beginning and end of a string (because a search for
/.*foo.*/
is the same as/foo/
, but the former is much slower in JS), but it doesn't correctly handle a search term"foo**"
.The text was updated successfully, but these errors were encountered: