Files
FloatApi/node_modules/@babel/runtime/helpers/skipFirstGeneratorNext.js
T
2022-03-07 22:07:57 +07:00

9 lines
181 B
JavaScript

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