hugo-theme-zzo/assets/js/helper/next.js

8 lines
172 B
JavaScript
Raw Normal View History

function next(node, selector) {
if (selector && document.querySelector(selector) !== node.nextElementSibling) {
return null;
}
return node.nextElementSibling;
}