13 lines
287 B
JavaScript
13 lines
287 B
JavaScript
let g = (() => {
|
|
var _ref = babelHelpers.asyncGenerator.wrap(function* (x = babelHelpers.asyncToGenerator(function* () {
|
|
yield 1;
|
|
})) {
|
|
yield babelHelpers.asyncGenerator.await(2);
|
|
yield 3;
|
|
});
|
|
|
|
return function g() {
|
|
return _ref.apply(this, arguments);
|
|
};
|
|
})();
|