swc/packages/helpers/esm/_skip_first_generator_next.js

10 lines
209 B
JavaScript
Raw Normal View History

export function _skip_first_generator_next(fn) {
return function() {
var it = fn.apply(this, arguments);
it.next();
return it;
};
2021-12-05 09:46:09 +03:00
}
export { _skip_first_generator_next as _ };