eligrey / Blob.js

An HTML5 Blob implementation
Other
1.15k stars 605 forks source link

Use of Uint8Array constructor in Blob.js not supported on older browsers #62

Open asacordex opened 6 years ago

asacordex commented 6 years ago

Seems like Uint8Array constructor is not supported in older browsers such as safari 10 and older. Would be great if the script checked if this constructor exists, and if doesn't exist used just an Array instead of Uint8Array.

Ref: https://caniuse.com/#search=Uint8Array

jimmywarting commented 5 years ago

I believe it already dose that