Skip to content

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

@KristjanTammekivi

Description

@KristjanTammekivi

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions