Files
ihrm/node_modules/@babel/runtime/helpers/skipFirstGeneratorNext.js

8 lines
258 B
JavaScript
Raw Normal View History

2023-05-10 15:06:57 +05:30
function _skipFirstGeneratorNext(fn) {
return function () {
var it = fn.apply(this, arguments);
it.next();
return it;
};
}
module.exports = _skipFirstGeneratorNext, module.exports.__esModule = true, module.exports["default"] = module.exports;