UNPKG

liftie

Version:

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

7 lines (5 loc) 179 B
import coerce from '../../tools/coerce.js'; export default parse; function parse(lifts) { return Object.fromEntries(lifts.map(({ name, status }) => [name, coerce(status)])); }