summaryrefslogtreecommitdiff
path: root/src/worker.js
blob: ee22ac2230eb5f5813b7500d5c85cd97cd855373 (plain)
1
2
3
self.onmessage = ({ data: { text } }) => {
  self.postMessage({ text: text + text });
};