A function that given a node will return the nearest anchor node starting at the passed node and walking up the tree until there are no more parent nodes.
var acquireAnchor = require('acquire-anchor');
var childNode = document.querySelector('.child-node');
var anchorNode = acquireAnchor(childNode);