10 lines
168 B
JavaScript
10 lines
168 B
JavaScript
/*#__PURE__*/
|
|
babelHelpers.asyncToGenerator(function* () {
|
|
return yield promise;
|
|
});
|
|
|
|
/*#__PURE__*/
|
|
babelHelpers.asyncToGenerator(function* () {
|
|
yield promise;
|
|
});
|