IE 11: Object doesn't support property or method 'isView'
See original GitHub issueHi,
I noticed in a bug report from Sentry that /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:
- 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.
Issue Analytics
- State:
- Created 3 years ago
- Comments:26 (11 by maintainers)
Top Results From Across the Web
Object doesn't support property or method 'includes' on IE 11
As I debug, I put a breakpoint, then I use the array which fails on on the console, and I receive the error....
Read more >Object doesn't support property or method 'createNSResolver ...
When using Internet Explorer 11 with EP 10.1.1 FP4 even though it is a supported configuration the error: Object doesn't support property or...
Read more >Object doesn't support property or method 'getRandomValues ...
When loading the page on IE with new relic's browser agent, I see the error in the screenshot above. This seems to be...
Read more >Object doesn't support property or method 'endsWith' on IE11
I am getting "Object doesn't support property or method 'endsWith'" error from drupal.js file only on IE-11 and because of that my further ......
Read more >JavaScript 'startsWith' method not supported in Internet ...
You may the following error message in browser console while using Internet Explorer 11. [Object doesn't support property or method 'startsWith']
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Here you go Ryan: https://jamiemason.github.io/react-fast-compare/
Thanks, there is a branch ready to put forward as a PR in https://github.com/FormidableLabs/react-fast-compare/issues/66#issuecomment-617298760 incase that would be of any use.