version_final_sans_test

This commit is contained in:
2025-09-23 14:54:33 +02:00
parent ad695b82f7
commit 8317094a4c
383 changed files with 51629 additions and 1341 deletions

15
node_modules/axios/lib/helpers/readBlob.js generated vendored Normal file
View File

@@ -0,0 +1,15 @@
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;