9 ms·
Happy to hear Babel is working well for you. I'm loving it too so far. Just to noet, named imports aren't technically destructuring though, since the syntax is
by loganfsmyth 11y ago
Happy to hear Babel is working well for you. I'm loving it too so far. Just to noet, named imports aren't technically destructuring though, since the syntax is different and doesn't nest. e.g.
import { fooFunc as otherFooFunc} from './Bar';
not
import { fooFunc: otherFooFunc} from './Bar';