Files
30-seconds-of-code/node_modules/@babel/runtime/helpers/esm/skipFirstGeneratorNext.js
2019-08-20 15:52:05 +02:00

7 lines
153 B
JavaScript

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