Slicing buffers fails in latest Microsoft Edge
See original GitHub issueslicing buffers fails in Edge 25.10586.0.0 it boils down to this:
var buf = new Buffer(100);
var arr = new Uint8Array(100);
buf instanceof Uint8Array; // true
Uint8Array.prototype.subarray.call(arr, 0, 0).length; // 0
Uint8Array.prototype.subarray.call(buf, 0, 0).length; // 100 !
Would you say this is an issue with Edge or with this lib?
Issue Analytics
- State:
- Created 8 years ago
- Comments:12 (6 by maintainers)
Top Results From Across the Web
What to do if Microsoft Edge isn't working
Here are some solutions to common problems with the new Microsoft Edge . If Microsoft Edge keeps crashing. If you can't open Microsoft...
Read more >Troubleshoot print issues in Microsoft Edge
A print issue can occur due to a variety of reasons. It may show up as an error message when you try to...
Read more >Release notes for Microsoft Edge Security Updates
Microsoft has released the latest Microsoft Edge Stable Channel (Version 108.0.1462.54), which incorporates the latest Security Updates of ...
Read more >Internet Explorer (IE) mode troubleshooting and FAQ
Troubleshooting guide and FAQ for Microsoft Edge Internet Explorer mode. ... If the workflow still fails after adding a new neutral site, ...
Read more >Diagnose and fix Microsoft Edge sync issues
The error is Last Token Error, EDGE_AUTH_ERROR: 3, 54, 3ea, which is found in edge://sync-internals under Credentials.
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
I see, good to know EdgeHTML has different versioning from the browser.
@Sjors EdgeHTML13 is actually pretty new. See: https://en.wikipedia.org/wiki/Microsoft_Edge#Release_history And there’s no way to get a newer version with Sauce Labs right now.
To be clear, you’re not reporting a new issue. Just saying that you got this bug using an old version of browserify/buffer?