function findChild()

in src/util/xml-helpers.js [235:238]


function findChild (node, parent) {
    const matches = parent.findall(String(node.tag));
    return matches.find(m => module.exports.equalNodes(node, m));
}