Comment on ES6 in Depth: DestructuringparentComments−loganfsmyth11yHappy 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';
Comments
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.
not