mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
10 lines
231 B
JavaScript
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');
|
|
} |