index.js 244 B

1234567
  1. "use strict";
  2. export function createMiddlewareProxy () {
  3. const middlewareProxy = store => next => action =>
  4. middlewareProxy.target == null ? next(action) : middlewareProxy.target(store)(next)(action);
  5. return middlewareProxy;
  6. }