UNPKG

liftie

Version:

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

13 lines (11 loc) 243 B
import { findText } from '../../tools/domutil.js'; export default { selector: '.tablepress-table-name', parse(node) { const [name, status] = findText(node).split('-'); return { name: name, status: status }; } };