1 2 3 4 5 6 7 8 9 10 11 12
'use strict'; importScripts('helpers.js'); onconnect = msg => { const port = msg.source; const orig = createOriginalReadableStream(); try { port.postMessage(orig, [orig]); } catch (e) { port.postMessage(e.message); } };