UNPKG

violet-paginator

Version:

Display, paginate, sort, filter, and update items from the server. violet-paginator is a complete list management library for react/redux applications.

17 lines (14 loc) 323 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = function (store) { return function (next) { return function (action) { if (typeof action === 'function') { return action(store.dispatch, store.getState); } return next(action); }; }; };