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