mirror of
https://github.com/oven-sh/bun
synced 2026-02-19 07:12:24 +00:00
5 lines
100 B
TypeScript
5 lines
100 B
TypeScript
var bc = new BroadcastChannel("sleep");
|
|
bc.onmessage = function (e) {
|
|
bc.postMessage("done!");
|
|
};
|