astro-ghostcms/.pnpm-store/v3/files/73/40d71e864183cf0f31d3c10a742...

6 lines
187 B
Plaintext

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