UNPKG

liftie

Version:

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

13 lines (11 loc) 310 B
import { text } from '../../tools/domutil.js'; export default { selector: '.snowreport_sponsorarea:nth-child(2) table tbody tr', parse: { name: 0, status(node) { const src = text(node, { child: '1/0', attribute: 'src' }); return src.includes('cross') ? 'closed' : 'open'; } } };