vscode-javascript-booster icon indicating copy to clipboard operation
vscode-javascript-booster copied to clipboard

Feature request: Convert x === y condition to [y].includes(x)

Open KristjanTammekivi opened this issue 3 years ago • 0 comments
trafficstars

I noticed today that quite often I have something like

if (someVar === 'value1') {

}

and then I need to add another possible value so I either need to do || someVar === 'value2' or more concisely if (['value1', 'value2'].includes(someVar))

So would be nice if there was a refactoring to convert === to Array includes call (and bonus if I already have an OR statement and I could convert both of them to one includes call

KristjanTammekivi avatar Dec 26 '21 19:12 KristjanTammekivi