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
{{ message }}
This repository was archived by the owner on Feb 19, 2021. It is now read-only.
Related to, but different from #8. #8 wants it to auto-convert a non-global regex to a global regex. I think we should accept regex searchValues, but not convert them to a global regex.
String.p.matchAll is setting precedent for "all" methods:
'test'.matchAll(/t/);// => [ [first t match] ]'test'.matchAll(/t/g);// => [ [first t match], [second t match] ]