mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-19 23:07: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");
|
|
}
|