Projekt

Obecné

Profil

Stáhnout (212 Bajtů) Statistiky
| Větev: | Revize:
1
var AsyncGenerator = require("./AsyncGenerator");
2

    
3
function _wrapAsyncGenerator(fn) {
4
  return function () {
5
    return new AsyncGenerator(fn.apply(this, arguments));
6
  };
7
}
8

    
9
module.exports = _wrapAsyncGenerator;
(78-78/80)