Source code

Revision control

Copy as Markdown

Other Tools

onmessage = e => {
fetch(e.data)
.then(r => r.blob())
.then(blob => postMessage(blob));
};