Projekt

Obecné

Profil

Stáhnout (184 Bajtů) Statistiky
| Větev: | Revize:
1
import AsyncGenerator from "./AsyncGenerator";
2
export default function _wrapAsyncGenerator(fn) {
3
  return function () {
4
    return new AsyncGenerator(fn.apply(this, arguments));
5
  };
6
}
(78-78/80)