UNPKG

@wenn/onb

Version:

onb-core

11 lines (8 loc) 270 B
const log = ({ getState, dispatch }) => next => action => { if (action.type.indexOf('@@') === -1) { process.env.NODE_ENV === 'development' && console.info('ACTION: ' + action.type, action); // eslint-disable-line } next(action); }; export default log;