blob: 9fc67171d05dd28d6317e9e2ab986b0b68a7fc15 [file] [log] [blame]
self.onmessage = async (e) => {
const response = await fetch(e.data);
const text = await response.text();
self.postMessage(text);
};