Files
tubestation/dom/file/tests/worker_bug1507893.js
2019-07-05 10:44:55 +02:00

6 lines
101 B
JavaScript

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