From 9976e3f528bae74667a2f4742c4b165b7f68c76d Mon Sep 17 00:00:00 2001 From: dave caruso Date: Thu, 14 Sep 2023 00:39:36 -0400 Subject: fix(runtime): make most globals configurable/deletable, allow resuming the console iterator (#5216) * Fix #5177 * Fix #5175 * make most globals deletable/overridable * not done * cool * a * done * fix test * oops * yippee --- src/js/_codegen/client-js.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/js/_codegen/client-js.ts') diff --git a/src/js/_codegen/client-js.ts b/src/js/_codegen/client-js.ts index 849240c1f..2db3305fa 100644 --- a/src/js/_codegen/client-js.ts +++ b/src/js/_codegen/client-js.ts @@ -15,7 +15,7 @@ let $debug_log_enabled = ((env) => ( .split(/[-_./]/g) .join("_") .toUpperCase()}) -))(@Bun.env); +))(Bun.env); let $debug_log = $debug_log_enabled ? (...args) => { // warn goes to stderr without colorizing console.warn(Bun.enableANSIColors ? '\\x1b[90m[${publicName}]\\x1b[0m' : '[${publicName}]', ...args); -- cgit v1.2.3