mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 13:18:45 +02:00
5 lines
96 B
JavaScript
5 lines
96 B
JavaScript
onmessage = e => {
|
|
fetch(e.data)
|
|
.then(r => r.blob())
|
|
.then(blob => postMessage(blob));
|
|
}
|