Source code
Revision control
Copy as Markdown
Other Tools
self.onmessage = async (e) => {
const response = await fetch(e.data);
const text = await response.text();
self.postMessage(text);
};
self.onmessage = async (e) => {
const response = await fetch(e.data);
const text = await response.text();
self.postMessage(text);
};