Files
fte-Homepage/node_modules/@babel/runtime/helpers/esm/wrapAsyncGenerator.js
root 06acaecee1 .
2023-07-30 22:05:51 +02:00

6 lines
187 B
JavaScript

import AsyncGenerator from "./AsyncGenerator.js";
export default function _wrapAsyncGenerator(fn) {
return function () {
return new AsyncGenerator(fn.apply(this, arguments));
};
}