hensei-web/node_modules/@babel/runtime/helpers/wrapAsyncGenerator.js
2020-09-11 06:44:42 -07:00

9 lines
No EOL
212 B
JavaScript

var AsyncGenerator = require("./AsyncGenerator");
function _wrapAsyncGenerator(fn) {
return function () {
return new AsyncGenerator(fn.apply(this, arguments));
};
}
module.exports = _wrapAsyncGenerator;