/
lostSun
/
project-client-server-apps
Обзор
Документация
Войти
/
lostSun
/
project-client-server-apps
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/axobject-query/lib/util/iteratorProxy.js
33 строки
651 B
1lostsun
initial commit
05 май 2025, 11:35
05 май 2025, 11:35
fe8f535
Код
Авторство
О чём код?
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; // eslint-disable-next-line no-unused-vars function iteratorProxy() { var values = this; var index = 0; var iter = { '@@iterator': function iterator() { return iter; }, next: function next() { if (index < values.length) { var value = values[index]; index = index + 1; return { done: false, value: value }; } else { return { done: true }; } } }; return iter; } var _default = iteratorProxy; exports.default = _default;