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