Hi, I noticed in a bug report from Sentry that [/index.js#L67](https://github.com/FormidableLabs/react-fast-compare/blob/1210a90b69e7c78ac377324273974035f44825b9/index.js#L67) throws `Object doesn't support property or method 'isView'` in IE 11. Broadly speaking, I think the fix would be to check for `ArrayBuffer.isView` before invoking it: ```diff - if (hasArrayBuffer && ArrayBuffer.isView(a) && ArrayBuffer.isView(b)) { + if (hasArrayBuffer && ArrayBuffer.isView && ArrayBuffer.isView(a) && ArrayBuffer.isView(b)) { ``` I'm happy to submit a PR if you agree to this change. Thanks.