asd/asd-pc/node_modules/@babel/runtime/helpers/esm/skipFirstGeneratorNext.js
愉快的大福 eb8378e551 init
2024-11-21 11:06:22 +08:00

7 lines
153 B
JavaScript

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