mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-07-01 08:47:18 +08:00
12 lines
176 B
Text
12 lines
176 B
Text
let worker;
|
|
|
|
if (self.document) {
|
|
worker = new Worker(import.meta.url);
|
|
}
|
|
if (self.postMessage) {
|
|
setTimeout(() => {
|
|
postMessage("a");
|
|
}, 500);
|
|
}
|
|
|
|
export { worker };
|