Skip to content

Instantly share code, notes, and snippets.

@tsibley
Created May 10, 2023 22:40
Show Gist options
  • Save tsibley/e33ecf2cc1a7b8db322b4d2bc1ee6402 to your computer and use it in GitHub Desktop.
Save tsibley/e33ecf2cc1a7b8db322b4d2bc1ee6402 to your computer and use it in GitHub Desktop.
function queryXPath(root, path) {
const result = document.evaluate(path, root);
return {
*[Symbol.iterator]() {
let node;
while ((node = result.iterateNext()) !== null)
yield node;
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment