mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-29 18:58:40 +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");
|
|
}
|