UNPKG

liftie

Version:

Clean, simple, easy to read, fast ski resort lift status

15 lines (12 loc) 263 B
function removeAllChildren(node) { while (node.hasChildNodes()) { node.removeChild(node.lastChild); } } function next({ nextElementSibling, nextSibling }) { return nextElementSibling || nextSibling; } module.exports = { next, removeAllChildren };