mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
* WIP missing keepalive * cleanup * is a Bun.sleep bug? * no bun sleep * fix exception * revert * fix setTimeout/Bun.sleep * add Bun.sleep keepalive test * fixes * one more bonus fix * fix early firing of timers * use localhost and pass the server.hostname * opsie
5 lines
88 B
TypeScript
5 lines
88 B
TypeScript
(async () => {
|
|
await Bun.sleep(10);
|
|
console.log("event loop was not killed");
|
|
})();
|