mirror of
https://gitea.tendokyu.moe/pinapelz/Mirage.git
synced 2026-09-27 09:23:22 +03:00
7 lines
176 B
JavaScript
7 lines
176 B
JavaScript
function _skipFirstGeneratorNext(t) {
|
|
return function () {
|
|
var r = t.apply(this, arguments);
|
|
return r.next(), r;
|
|
};
|
|
}
|
|
export { _skipFirstGeneratorNext as default }; |