mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +09:00
7 lines
102 B
JavaScript
7 lines
102 B
JavaScript
|
|
onmessage = function(event) {
|
||
|
|
var blob = event.data;
|
||
|
|
|
||
|
|
blob.slice(1, 5);
|
||
|
|
|
||
|
|
postMessage("done");
|
||
|
|
}
|