Bug 1885602 - Part 5: Implement navigating to the SUMO help topic from the menu heade...
[gecko.git] / dom / file / tests / worker_bug1507893.js
blob06fce2b2ef46ca5f39b261dc70271843cc6be30c
1 onmessage = e => {
2   fetch(e.data)
3     .then(r => r.blob())
4     .then(blob => postMessage(blob));
5 };