mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-22 02:58:36 +00:00
7 lines
No EOL
153 B
JavaScript
Vendored
7 lines
No EOL
153 B
JavaScript
Vendored
export default function _skipFirstGeneratorNext(fn) {
|
|
return function () {
|
|
var it = fn.apply(this, arguments);
|
|
it.next();
|
|
return it;
|
|
};
|
|
} |