There was an error while loading. Please reload this page.
TS and JS Grammar Extension version: latest
Code
const x = /[a\-b]/g
Bug
\-b is treated as a single character class. However the \- should treated as an escape
TS and JS Grammar Extension version: latest
Code
Bug
\-b is treated as a single character class. However the \- should treated as an escape