Skip to content

Commit

Permalink
Update fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Oct 27, 2022
1 parent 4dfce46 commit d575f2d
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -7,11 +7,13 @@ function foo(_x) {
return _foo.apply(this, arguments);
}
function _foo() {
_foo = babelHelpers.asyncToGenerator(function* (_ref) {
_foo = babelHelpers.asyncToGenerator(function (_ref) {
let a = _ref.a,
_ref$b = _ref.b,
b = _ref$b === void 0 ? mandatory("b") : _ref$b;
return Promise.resolve(b);
return function* () {
return Promise.resolve(b);
}();
});
return _foo.apply(this, arguments);
}

0 comments on commit d575f2d

Please sign in to comment.