# ignore-this-changeset Differential Revision: https://phabricator.services.mozilla.com/D35951
6 lines
101 B
JavaScript
6 lines
101 B
JavaScript
onmessage = e => {
|
|
fetch(e.data)
|
|
.then(r => r.blob())
|
|
.then(blob => postMessage(blob));
|
|
};
|