hensei-web/node_modules/@babel/runtime/helpers/skipFirstGeneratorNext.js
2020-09-11 06:44:42 -07:00

9 lines
No EOL
181 B
JavaScript

function _skipFirstGeneratorNext(fn) {
return function () {
var it = fn.apply(this, arguments);
it.next();
return it;
};
}
module.exports = _skipFirstGeneratorNext;