mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 08:46:39 +00:00
9 lines
No EOL
181 B
JavaScript
9 lines
No EOL
181 B
JavaScript
function _skipFirstGeneratorNext(fn) {
|
|
return function () {
|
|
var it = fn.apply(this, arguments);
|
|
it.next();
|
|
return it;
|
|
};
|
|
}
|
|
|
|
module.exports = _skipFirstGeneratorNext; |