Feross Aboukhadijeh

Results 563 comments of Feross Aboukhadijeh

I actually found [block-stream2](https://www.npmjs.com/package/block-stream2) which is doing the job for now.

This looks like a real bug. @isaacs - care to merge this?

It looks like the possible values for `os.arch()` are 'arm', 'arm64', 'ia32', 'mips', 'mipsel', 'ppc', 'ppc64', 's390', 's390x', 'x32', and 'x64' based on https://nodejs.org/api/os.html#os_os_arch so we should attempt to return...

Thanks. This is a valid suggestion. I plan to fix this and rehaul the UI even more when I get some more free time.

This actually still appears to be an issue.

Thanks for opening this issue. However, this jsperf just shows that converting from **Buffer to Blob** (the opposite of what this package does) is faster. There's no way (that I...

Neat, this didn't exist in 2015. Does this actually perform better than FileReader? It's going to be way less browser compatible too.

@KayleePop Thanks for making that performance test. Here were my results: Seems like the `Response` approach is faster for large files. Am I reading that, right? @jimmywarting It seems that...

It's not clear to me why IE11 does not allow assignment to `Buffer.prototype.slice` since it's our own class, and we don't mark `slice` as read-only. If someone has an idea,...

I'm open to merging a PR that switches to `TextDecoder`. If you would like to see it implemented, please send a pull request!