mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
This reverts commit a118bed82f
.
This commit is contained in:
parent
1f375522d6
commit
ff93d95998
4 changed files with 10 additions and 41 deletions
10
src/utils.ts
10
src/utils.ts
|
@ -227,13 +227,3 @@ export const sceneCoordsToViewportCoords = (
|
|||
|
||||
export const getGlobalCSSVariable = (name: string) =>
|
||||
getComputedStyle(document.documentElement).getPropertyValue(`--${name}`);
|
||||
|
||||
export const isRTL = (text: string) => {
|
||||
const ltrChars =
|
||||
"A-Za-z\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u02B8\u0300-\u0590\u0800-\u1FFF" +
|
||||
"\u2C00-\uFB1C\uFDFE-\uFE6F\uFEFD-\uFFFF";
|
||||
const rtlChars = "\u0591-\u07FF\uFB1D-\uFDFD\uFE70-\uFEFC";
|
||||
const rtlDirCheck = new RegExp(`^[^${ltrChars}]*[${rtlChars}]`);
|
||||
|
||||
return rtlDirCheck.test(text);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue