mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 06:59:13 +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 };
|