UNPKG

liftie

Version:

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

10 lines (8 loc) 226 B
export function removeAllChildren(node) { while (node.hasChildNodes()) { node.removeChild(node.lastChild); } } export function next({ nextElementSibling, nextSibling }) { return nextElementSibling || nextSibling; }