This repository was archived by the owner on May 14, 2020. It is now read-only.

Description
After starting to use redux-devtools, I noticed my app was broken in IE11, caused by the unguarded typeof obj[Symbol.iterator] === 'function' check in obj-type.js
Guarding the check with typeof Symbol !== 'undefined' would make for a quick fix.
Edit: I've just spotted that PR #2 is intended to fix this.