mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 10:19:24 +02:00
6 lines
No EOL
187 B
JavaScript
6 lines
No EOL
187 B
JavaScript
import AsyncGenerator from "./AsyncGenerator.js";
|
|
export default function _wrapAsyncGenerator(fn) {
|
|
return function () {
|
|
return new AsyncGenerator(fn.apply(this, arguments));
|
|
};
|
|
} |