aboutsummaryrefslogtreecommitdiff
path: root/node_modules/@babel/runtime/helpers/es6/wrapAsyncGenerator.js
blob: 6d6d9811e953fb2e5859f87d148354a364322053 (plain)
1
2
3
4
5
6
import AsyncGenerator from "./AsyncGenerator";
export default function _wrapAsyncGenerator(fn) {
  return function () {
    return new AsyncGenerator(fn.apply(this, arguments));
  };
}