fix : lint error

This commit is contained in:
GuillaumeSD
2025-04-13 17:01:32 +02:00
parent 20bf8f57e8
commit 52a8586999

View File

@@ -13,7 +13,7 @@ export const isWasmSupported = () =>
export const isMultiThreadSupported = () => {
try {
return SharedArrayBuffer !== undefined;
} catch(e) {
} catch {
return false;
}
};