vscode: migrate to tripple equals

This commit is contained in:
Veetaha 2020-02-17 22:35:37 +02:00
parent f9acb4333f
commit d905abfb11
4 changed files with 10 additions and 9 deletions

View file

@ -73,7 +73,7 @@ class HintsUpdater {
async setEnabled(enabled: boolean): Promise<void> {
console.log({ enabled, prev: this.enabled });
if (this.enabled == enabled) return;
if (this.enabled === enabled) return;
this.enabled = enabled;
if (this.enabled) {