output.js 203 B

1234567891011
  1. function foo() {
  2. return _foo.apply(this, arguments);
  3. }
  4. function _foo() {
  5. _foo = babelHelpers.asyncToGenerator(function* () {
  6. var wat = yield bar();
  7. });
  8. return _foo.apply(this, arguments);
  9. }