UNPKG

liftie

Version:

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

22 lines (17 loc) 284 B
module.exports = tag; function tag(node) { let count; function update(c) { if (!count) { return; } count.innerHTML = c; node.classList.toggle('hidden', c <= 0); } if (node) { count = node.querySelector('.count'); } return { update }; }