mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 03:01:48 +03:00
10 lines
209 B
JavaScript
10 lines
209 B
JavaScript
export function _skip_first_generator_next(fn) {
|
|
return function() {
|
|
var it = fn.apply(this, arguments);
|
|
it.next();
|
|
|
|
return it;
|
|
};
|
|
}
|
|
export { _skip_first_generator_next as _ };
|