Creates the HttpRangeReader instance. It is particularly useful for reading ZIP files via HTTP.
If you just want to add content retrieved via HTTP to a ZIP file, you can simply use
Response#body
https://developer.mozilla.org/en-US/docs/Web/API/Response/body instead.
The URL of the data.
Optional
options: HttpRangeOptionsThe options.
The ReadableStream
instance.
The total size of the data in bytes.
Optional
initInitializes the instance asynchronously
Reads a chunk of data
The byte index of the data to read.
The length of the data to read in bytes.
A promise resolving to a chunk of data. The data must be trucated to the remaining size if the requested length is larger than the remaining size.
Represents a Reader instance used to fetch data from servers returning
Accept-Ranges
headers.