blob: 6d6d9811e953fb2e5859f87d148354a364322053 [file] [log] [blame]
import AsyncGenerator from "./AsyncGenerator";
export default function _wrapAsyncGenerator(fn) {
return function () {
return new AsyncGenerator(fn.apply(this, arguments));
};
}