UNPKG

liftie

Version:

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

8 lines (5 loc) 184 B
const coerce = require('../../tools/coerce'); module.exports = parse; function parse(lifts) { return Object.fromEntries(lifts.map(({ name, status }) => [name, coerce(status)])); }