UNPKG

@indielayer/ui

Version:

Indielayer UI Components with Tailwind CSS build for Vue 3

14 lines (10 loc) 276 B
export function isRtl(element: HTMLElement) { let currentElement: HTMLElement | null = element while (currentElement) { if (currentElement.dir) { return currentElement.dir === 'rtl' } currentElement = currentElement.parentElement } return false }