Blob.slice has Int as parameters. What if referenc...
# javascript
d
Blob.slice has Int as parameters. What if referencing files larger than 2GB?
k
Are you trying to process files larger than 2GB with JavaScript?
d
Why not? You can read it by chunks
I did an emulator sometime ago: http://jspspemu.com
It can stream huge iso files either online or locally
And that can handle files larger than 2gb. Sometimes 4gb or potentially larger
You can also think in an online service that computes hashes with local files. Reading chunks in JS. You will have to be able to reference positions in files larger than 2gb