Files
actions-ansi-to-html/node_modules/@babel/runtime/helpers/esm/skipFirstGeneratorNext.js
T
2025-11-11 06:53:11 -05:00

7 lines
153 B
JavaScript

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