Skip to content

Commit 4eaf363

Browse files
Use a small large and print the bytes as a string
1 parent 4df3006 commit 4eaf363

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

index.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,23 @@ window.addEventListener('load', async () => {
22
/* https://developer.mozilla.org/en-US/docs/Web/HTTP/Range_requests */
33

44
const id = Math.round(Math.random() * 1000);
5+
const bytes = 8;
6+
const range = `bytes=0-${bytes - 1}`;
57

68
// See if range headers are supported: Accept-Ranges in headers?
79
const headResponse = await fetch(`https://picsum.photos/id/${id}/100/100`, { method: 'HEAD' });
810
console.log(headResponse.headers.forEach(console.log));
911

10-
const getResponse = await fetch(`https://picsum.photos/id/${id}/100/100`, { method: 'GET', headers: { Range: "bytes=0-255" } });
12+
const getResponse = await fetch(`https://picsum.photos/id/${id}/100/100`, { method: 'GET', headers: { Range: range } });
1113
const arrayBuffer = await getResponse.arrayBuffer();
12-
console.log(arrayBuffer.byteLength);
14+
console.log(String.fromCharCode(...new Uint8Array(arrayBuffer)));
1315

1416
const githubPagesUrl = 'https://tomashubelbauer.github.io/fetch-range-request/index.html';
1517

1618
const githubPagesHeadResponse = await fetch(githubPagesUrl, { method: 'HEAD' });
1719
console.log(githubPagesHeadResponse.headers.forEach(console.log));
1820

19-
const githubPagesGetResponse = await fetch(githubPagesUrl, { method: 'GET', headers: { Range: "bytes=0-255" } });
21+
const githubPagesGetResponse = await fetch(githubPagesUrl, { method: 'GET', headers: { Range: range } });
2022
const githubPagesArrayBuffer = await githubPagesGetResponse.arrayBuffer();
21-
console.log(githubPagesArrayBuffer.byteLength);
23+
console.log(String.fromCharCode(...new Uint8Array(githubPagesArrayBuffer)));
2224
});

0 commit comments

Comments
 (0)