UNPKG

liftie

Version:

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

11 lines (8 loc) 285 B
import coerce from './coerce.js'; // common parser for Intrawest http://www.intrawest.com/about-us/who-we-are.aspx export default function parse(lifts) { return lifts.reduce((ls, { Name: name, StatusEnglish: status }) => { ls[name] = coerce(status); return ls; }, {}); }