UNPKG

liftie

Version:

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

20 lines (19 loc) 350 B
export default { selector: '[data-tag="lifts"] tr:not(:first-child)', parse: { name: '3/0', status: { child: '0', attribute: 'class', regex: /state(\d)$/, fn: s => { switch (s) { case '0': return 'closed'; case '1': return 'open'; } } } } };