From 25dae5441008df0f866abe2ddca94e28bc05b77b Mon Sep 17 00:00:00 2001 From: Sneed Group Holder Date: Fri, 25 Oct 2024 10:07:31 -0500 Subject: [PATCH] patch up timeout code --- qjs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qjs.c b/qjs.c index be8a21d..60a6dcd 100644 --- a/qjs.c +++ b/qjs.c @@ -531,7 +531,7 @@ int main(int argc, char **argv) "\n" "if (typeof os !== 'undefined') {\n" " globalThis.sleep = os.sleep;\n" - " async function setTimeout(func, ms) { await sleep(ms); Function(func)(); }\n" + " async function setTimeout(func, ms) { await sleep(ms); return func(); }\n" " globalThis.setTimeout = setTimeout\n" "} else {\n" " console.error('os is not defined.');\n"