ohctechv3/.svn/pristine/ac/ac976b83717b05021cc7622d959a756ff01b32e6.svn-base

7 lines
291 B
Plaintext
Raw Permalink Normal View History

2024-10-28 15:03:36 +05:30
var AsyncGenerator = require("./AsyncGenerator.js");
function _wrapAsyncGenerator(fn) {
return function () {
return new AsyncGenerator(fn.apply(this, arguments));
};
}
module.exports = _wrapAsyncGenerator, module.exports.__esModule = true, module.exports["default"] = module.exports;