UNPKG

liftie

Version:

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

13 lines (11 loc) 237 B
const { findText } = require('../../tools/domutil'); module.exports = { selector: '.tablepress-table-name', parse(node) { const [name, status] = findText(node).split(' – '); return { name, status }; } };