From 52a8586999942a2e03d561ffd1b77dbede61faaf Mon Sep 17 00:00:00 2001 From: GuillaumeSD Date: Sun, 13 Apr 2025 17:01:32 +0200 Subject: [PATCH] fix : lint error --- src/lib/engine/shared.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/engine/shared.ts b/src/lib/engine/shared.ts index 1713b47..9b40c8c 100644 --- a/src/lib/engine/shared.ts +++ b/src/lib/engine/shared.ts @@ -13,7 +13,7 @@ export const isWasmSupported = () => export const isMultiThreadSupported = () => { try { return SharedArrayBuffer !== undefined; - } catch(e) { + } catch { return false; } };