Comment on ES6 in Depth: DestructuringparentComments−hokkos11yJust use asyncToGenerator in babel : "optional": ["asyncToGenerator"] http://babeljs.io/docs/advanced/transformers/other/async-to-...It will transforms async functions to a generator, with a far better debugging experience, and generators are supported in chrome dev and firefox now.
Comments
Just use asyncToGenerator in babel : "optional": ["asyncToGenerator"] http://babeljs.io/docs/advanced/transformers/other/async-to-...
It will transforms async functions to a generator, with a far better debugging experience, and generators are supported in chrome dev and firefox now.