github-pages-deploy-action/node_modules/@babel/runtime/helpers/esm/skipFirstGeneratorNext.js
2020-03-06 22:45:40 -05:00

7 lines
153 B
JavaScript

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