function closest()

in plugins/lib/decl-validator.js [233:238]


function closest(node, test) {
  let ancestor = node
  do {
    if (test(ancestor)) return ancestor
  } while ((ancestor = ancestor.parent))
}