1// A worker that just transfers back any message that is sent to it. 2onmessage = evt => postMessage(evt.data, [evt.data]); 3