get rid of unnecessary optional chaining

This commit is contained in:
Vendicated 2025-02-16 21:57:48 +01:00
parent 71ddc4f1fc
commit de2565a7ea
No known key found for this signature in database
GPG key ID: D66986BAF75ECF18

View file

@ -135,7 +135,7 @@ export function _shouldIgnoreModule(exports: any) {
return false;
}
if (exports?.[uniqueSymbol]) {
if (exports[uniqueSymbol]) {
return true;
}