mirror of
https://github.com/tenrok/axios.git
synced 2026-05-15 11:59:42 +03:00
16 lines
318 B
JavaScript
16 lines
318 B
JavaScript
const {asyncIterator} = Symbol;
|
|
|
|
const readBlob = async function* (blob) {
|
|
if (blob.stream) {
|
|
yield* blob.stream()
|
|
} else if (blob.arrayBuffer) {
|
|
yield await blob.arrayBuffer()
|
|
} else if (blob[asyncIterator]) {
|
|
yield* blob[asyncIterator]();
|
|
} else {
|
|
yield blob;
|
|
}
|
|
}
|
|
|
|
export default readBlob;
|