You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3 vuotta sitten
1234567891011121314151617181920
  1. "use strict";
  2. var compose = require('redux').compose;
  3. exports.__esModule = true;
  4. exports.composeWithDevTools = (
  5. typeof window !== 'undefined' && window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ ?
  6. window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__ :
  7. function() {
  8. if (arguments.length === 0) return undefined;
  9. if (typeof arguments[0] === 'object') return compose;
  10. return compose.apply(null, arguments);
  11. }
  12. );
  13. exports.devToolsEnhancer = (
  14. typeof window !== 'undefined' && window.__REDUX_DEVTOOLS_EXTENSION__ ?
  15. window.__REDUX_DEVTOOLS_EXTENSION__ :
  16. function() { return function(noop) { return noop; } }
  17. );