caverav / auditforge

Found trailing undefined in function call JS-W1042
Anti-pattern
Minor
11 days ago11 days old
Remove redundant undefined from function call
171      liveSettingsPaths.forEach(path => {
172        if (!SettingSchema.path(path) && !path.startsWith('_')) {
173          needUpdate = true;
174          _.set(liveSettings, path, undefined);175        }
176      });
177