UNPKG

liftie

Version:

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

20 lines (19 loc) 375 B
export default { selector: 'h3:contains("Stato apertura impianti") ~ table tr', parse: { name: '0', status: { child: '1/0', attribute: 'src', regex: /(rosso|verde)\.png$/, fn: s => { switch (s) { case 'verde': return 'open'; case 'rosso': return 'closed'; } } } } };