Files
FloatApi/node_modules/@babel/runtime/helpers/wrapAsyncGenerator.js
T
2022-03-07 22:07:57 +07:00

9 lines
212 B
JavaScript

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