UNPKG

x-weather

Version:

A collection of web components implementing portions of the OpenWeatherMap API.

3 lines (2 loc) 186 B
export const createReducer = (initialState, handlers) => (state = initialState, action) => handlers.hasOwnProperty(action.type) === true ? handlers[action.type](state, action) : state