Files
wechatpay-enterprise-web/node_modules/@babel/runtime/helpers/esm/skipFirstGeneratorNext.js
jefferyzhao b9bdc8598b first commit
2025-07-31 17:44:12 +08:00

7 lines
153 B
JavaScript

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