We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm using [email protected] and I've noticed that String.prototype.replaceAll polyfill has a bug. It should support an algorithm defined by special replacements patterns.
String.prototype.replaceAll
'foo.bar'.replaceAll('.', '$$$$$');
This call actually returns foo$$$$$bar but it should return foo$$$bar instead.
foo$$$$$bar
foo$$$bar
The text was updated successfully, but these errors were encountered:
18592d1
No branches or pull requests
I'm using [email protected] and I've noticed that
String.prototype.replaceAll
polyfill has a bug. It should support an algorithm defined by special replacements patterns.POC:
This call actually returns
foo$$$$$bar
but it should returnfoo$$$bar
instead.The text was updated successfully, but these errors were encountered: