github-pages-deploy-action/node_modules/@babel/runtime/helpers/skipFirstGeneratorNext.js

9 lines
181 B
JavaScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
function _skipFirstGeneratorNext(fn) {
return function () {
var it = fn.apply(this, arguments);
it.next();
return it;
};
}
module.exports = _skipFirstGeneratorNext;