Newer
Older
alert / js / node_modules / @babel / runtime / helpers / esm / wrapAsyncGenerator.js
@Réz István Réz István on 18 Nov 2021 187 bytes first commit
import AsyncGenerator from "./AsyncGenerator.js";
export default function _wrapAsyncGenerator(fn) {
  return function () {
    return new AsyncGenerator(fn.apply(this, arguments));
  };
}