mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-07 03:19:13 +08:00
6 lines
No EOL
187 B
Text
6 lines
No EOL
187 B
Text
import AsyncGenerator from "./AsyncGenerator.js";
|
|
export default function _wrapAsyncGenerator(fn) {
|
|
return function () {
|
|
return new AsyncGenerator(fn.apply(this, arguments));
|
|
};
|
|
} |