Could somebody please help me with the following question:
Where can I find the list of ECMAScript features that have been implemented by Typescript? I'm particularly interested in RegExp Unicode property escapes which was added in ES2018 (which happened pretty recently according to this post). I would like to use this feature to add multi-language support for Angular, but couldn't find any evidence that it was adopted by Typescript.
P.s. I spent some time and found the following resources Issue on github, PR on github, Typescript Roadmap, ES compatibility Table.
From my understanding, they are very closely related to my question, but none of them can actually confirm that Unicode property escapes was implemented. I can still fallback to the transpiled solution, but it would be nice to use /\p{L}/u
instead of very long string.
Thank you in advance!