core icon indicating copy to clipboard operation
core copied to clipboard

Simplify RegEx for `SchedulerWithCache`

Open vitonsky opened this issue 2 years ago • 0 comments

src/util/Scheduler/SchedulerWithCache.ts contains a really large regular expression

https://github.com/translate-tools/core/blob/d8b6fbb156a8e03e0ee9d0be0a6e1879ceb1ad90/src/util/Scheduler/SchedulerWithCache.ts#L62

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

Unicode Property Escapes can be transpiled down to ES5 with a tool called regexpu

SO: https://stackoverflow.com/a/54879743/18680275

vitonsky avatar Jan 07 '23 21:01 vitonsky