-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
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
[RegExp] Incomplete sticky
flag support implementation / [email protected]+ breaks [email protected] patterns on IE11
#810
Comments
We experienced the described issue on IE11 with version 3.6, when reverted to 3.5.0 it works. |
One solution may be to use https://www.npmjs.com/package/babel-plugin-transform-xregexp and build patterns in build time. Haven't tested it properly yet - feedback welcomed. |
Seeing the same issue as well |
Looks like a duplicate of #751 |
Still having the same issues. Any updates regarding the issue ? |
Seems on |
#754 related |
sticky
RegExp
flag support implementation / [email protected]+ breaks [email protected] patterns on IE11
sticky
RegExp
flag support implementation / [email protected]+ breaks [email protected] patterns on IE11sticky
flag support implementation / [email protected]+ breaks [email protected] patterns on IE11
I'm facing the same issue as part of Stencil JS development which currently includes [email protected]. When will this bug be fixed? |
@gtranter when someone will fix it. Working on it is not in my plans. |
Update: IE11 visual references, such as the IE11 icons on the Start Menu and taskbar,
Probably time to close this issue since they killed IE11 this month with new update. |
@Yevgeniy-C here this approach does not work - a couple of times a month someone writes me even about IE6 support. In |
I thought that Microsoft forced users to delete IE and switch to edge with
new update this month. Not just stopped supporting but actually deleted IE
on users computers.
…On Sun, Feb 26, 2023, 9:57 AM Denis Pushkarev ***@***.***> wrote:
@Yevgeniy-C <https://github.com/Yevgeniy-C> here this approach does not
work - a couple of times a month someone writes me even about IE6 support.
In ***@***.*** will be removed IE8- support - but most likely IE9-11 still
will be supported. Also, it's related to other old engines.
—
Reply to this email directly, view it on GitHub
<#810 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACPRQ5FNHHFH7SDISLGWVETWZN4PZANCNFSM4MG4B6XA>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
@Yevgeniy-C it's problematic to delete it from PCs that do not receive actual updates - I'm pretty sure that it's most IE users. 0.7% according to current data is a fairly large share of users. A share of other ancient engines (iOS, Android, etc) without the support of this feature is comparable. CanIUse shows that it's about 4.17% at all. |
Related to: angular/angular-cli#17375
There are two issues with XRegExp and core-js I noticed recently:
1) On
[email protected]
this script causes endless loop:When using
[email protected]
everything works fine.2) Pattern that is working fine in
[email protected]
now breaks (the\s
, whitechar range, is gone)I'm trying to test the following code:
Both
uuu...
andxxx...
added only to see effects in the browser)And I see two different regexp patterns that got built by xregexp:
[email protected]
- spaces work fine[email protected]
- spaces break the pattern (notice lack ofx
chars and\s
at the beginning)The text was updated successfully, but these errors were encountered: