7 lines
179 B
TypeScript
7 lines
179 B
TypeScript
const bunGlobal = ((globalThis as { Bun?: Record<string, unknown> }).Bun ??=
|
|
{});
|
|
|
|
if (typeof bunGlobal.sleep !== "function") {
|
|
bunGlobal.sleep = async (_ms: number) => {};
|
|
}
|