villesau / optional-chaining-codemod

Codemod to migrate from Lodash get and logical and expressions to optional chaining
MIT License
112 stars 14 forks source link

feat: handle namespace import #32

Closed FauxFaux closed 3 years ago

FauxFaux commented 4 years ago

Fixes #29.

Allow import * as star from "lodash"; with any identifier.

Be aware that I have no idea what I'm doing, just beating the AST explorer until it did what I want.

I had to extract a local method here, it's too much to put in a loop or to extract a global method, sorry.