import-js icon indicating copy to clipboard operation
import-js copied to clipboard

Named imports mess up namespaced imports

Open trotzig opened this issue 8 years ago • 0 comments

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!

trotzig avatar Sep 05 '17 20:09 trotzig