1
0
Fork 0
management/front/dkha-web-sz-main/node_modules/@babel/runtime/helpers/wrapAsyncGenerator.js

9 lines
212 B
JavaScript

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