mirror of
https://github.com/zoriya/v10.git
synced 2026-08-16 02:45:09 +00:00
7 lines
284 B
TypeScript
7 lines
284 B
TypeScript
/** Check whether an element's text direction is right-to-left. */
|
|
export function isRTL(element: Element): boolean {
|
|
const dir = element.closest('[dir]')?.getAttribute('dir');
|
|
if (dir) return dir.toLowerCase() === 'rtl';
|
|
return getComputedStyle(element).direction === 'rtl';
|
|
}
|