import-js
import-js copied to clipboard
Named imports mess up namespaced imports
What used to be
import * as foo from 'foo';
will become
import foo, { bar } from 'foo';
after importing bar.
Kudos to @rohandang for finding this issue!