A RandomAccessReader over a DOM File/Blob that reads through slice() + arrayBuffer().
File
Blob
slice()
arrayBuffer()
Create a reader over the given blob.
The File or Blob to read from.
Readonly
Total number of bytes in the source.
Protected
Read up to length bytes starting at position.
length
position
Zero-based byte offset to start reading from.
Maximum number of bytes to read.
A promise for the bytes read, clamped to the source.
position or length is negative or not an integer.
A RandomAccessReader over a DOM
File/Blobthat reads throughslice()+arrayBuffer().