UNPKG

x-weather

Version:

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

10 lines (6 loc) 183 B
export const logger = store => next => action => { console.log('dispatching', action) let result = next(action) console.log('next state', store.getState()) return result }