mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
11 lines
356 B
JavaScript
11 lines
356 B
JavaScript
//#region src/dom/direction.ts
|
|
/** Check whether an element's text direction is right-to-left. */
|
|
function isRTL(element) {
|
|
const dir = element.closest("[dir]")?.getAttribute("dir");
|
|
if (dir) return dir.toLowerCase() === "rtl";
|
|
return getComputedStyle(element).direction === "rtl";
|
|
}
|
|
//#endregion
|
|
export { isRTL };
|
|
|
|
//# sourceMappingURL=direction.js.map
|