UNPKG

reakit

Version:

Toolkit for building accessible rich web apps with React

7 lines (6 loc) 188 B
export function isElementPreceding(element1: Element, element2: Element) { return Boolean( element2.compareDocumentPosition(element1) & Node.DOCUMENT_POSITION_PRECEDING ); }