get_my/node_modules/@babel/runtime/helpers/esm/skipFirstGeneratorNext.js
2022-08-05 16:55:56 -05:00

7 lines
No EOL
153 B
JavaScript

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