node-ejs-renderer/node_modules/@babel/runtime/helpers/esm/skipFirstGeneratorNext.js

7 lines
153 B
JavaScript
Raw Normal View History

2024-06-09 13:55:01 -04:00
export default function _skipFirstGeneratorNext(fn) {
return function () {
var it = fn.apply(this, arguments);
it.next();
return it;
};
}