Closed
Description
Currently, the lib doesn't officialy support Blob
.
If you try to store Blob
, the lib will be OK but:
- it will be fine in Chrome/Firefox/Safari desktop
indexedDb
- won't fail but won't be usable in Safari Mobile
indexedDb
which doesn't support this feature (could be done via base64 encoding) - need to check in IE/Edge
indexedDb
- it won't fail but won't be usable in
localStorage
, where an asynchronous conversion would be needed (viaFileReader
) Blob
are not supported at all in IE9
Please comment if this feature would be useful to. you. Not planned currently as it would be a huge work and not even sure it's possible to make it work everywhere.