UNPKG

liftie

Version:

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

20 lines (19 loc) 334 B
module.exports = { selector: '.table tbody tr', parse: { name: '1', status: { child: '3', attribute: 'class', regex: /\b(red|green)\b/, fn: s => { switch (s) { case 'green': return 'open'; default: return 'closed'; } } } } };