mirror of
https://github.com/swc-project/swc.git
synced 2025-01-06 22:00:45 +03:00
11 lines
501 B
JavaScript
11 lines
501 B
JavaScript
|
export const rtlRegEx = new RegExp(
|
||
|
/* eslint-disable prettier/prettier */
|
||
|
'[' +
|
||
|
String.fromCharCode(0x00591) + '-' + String.fromCharCode(0x008ff) +
|
||
|
String.fromCharCode(0x0fb1d) + '-' + String.fromCharCode(0x0fdff) +
|
||
|
String.fromCharCode(0x0fe70) + '-' + String.fromCharCode(0x0fefc) +
|
||
|
String.fromCharCode(0x10800) + '-' + String.fromCharCode(0x10fff) +
|
||
|
String.fromCharCode(0x1e800) + '-' + String.fromCharCode(0x1efff) +
|
||
|
']'
|
||
|
/* eslint-enable prettier/prettier */
|
||
|
);
|