projecte_ionic/node_modules/@babel/runtime/helpers/wrapAsyncGenerator.js
2022-02-09 18:30:03 +01:00

10 lines
293 B
JavaScript
Executable file

var AsyncGenerator = require("./AsyncGenerator.js");
function _wrapAsyncGenerator(fn) {
return function () {
return new AsyncGenerator(fn.apply(this, arguments));
};
}
module.exports = _wrapAsyncGenerator;
module.exports["default"] = module.exports, module.exports.__esModule = true;