Files
Iliyan Angelov 306b20e24a Frontend start
2025-09-14 00:54:48 +03:00

10 lines
231 B
JavaScript

import collectElements from './collectElements';
/**
* Collects all parent elements of a given element.
*
* @param node the element
*/
export default function parents(node) {
return collectElements(node, 'parentElement');
}