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
SchedulerWithCache
src/util/Scheduler/SchedulerWithCache.ts contains a really large regular expression
src/util/Scheduler/SchedulerWithCache.ts
core/src/util/Scheduler/SchedulerWithCache.ts
Line 62 in d8b6fbb
Let's replace it to a /[^\p{L}]/gu and cover by tests.
/[^\p{L}]/gu
Source: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions/Unicode_Property_Escapes
Unicode Property Escapes can be transpiled down to ES5 with a tool called regexpu
SO: https://stackoverflow.com/a/54879743/18680275
The text was updated successfully, but these errors were encountered:
No branches or pull requests
src/util/Scheduler/SchedulerWithCache.ts
contains a really large regular expressioncore/src/util/Scheduler/SchedulerWithCache.ts
Line 62 in d8b6fbb
Let's replace it to a
/[^\p{L}]/gu
and cover by tests.Source: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions/Unicode_Property_Escapes
SO: https://stackoverflow.com/a/54879743/18680275
The text was updated successfully, but these errors were encountered: