From de2565a7eaa96895326253b636f8b4b65fb30cbf Mon Sep 17 00:00:00 2001 From: Vendicated Date: Sun, 16 Feb 2025 21:57:48 +0100 Subject: [PATCH] get rid of unnecessary optional chaining --- src/webpack/webpack.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webpack/webpack.ts b/src/webpack/webpack.ts index a572bed5b..175ff9c21 100644 --- a/src/webpack/webpack.ts +++ b/src/webpack/webpack.ts @@ -135,7 +135,7 @@ export function _shouldIgnoreModule(exports: any) { return false; } - if (exports?.[uniqueSymbol]) { + if (exports[uniqueSymbol]) { return true; }