recoder-code
Version:
🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!
22 lines (21 loc) • 509 B
JavaScript
;
exports.__esModule = true;
var Params = (function () {
function Params(params) {
this.params = params;
this.index = 0;
this.params = params;
}
Params.prototype.get = function (_a) {
var key = _a.key, value = _a.value;
if (!this.params) {
return value;
}
if (key) {
return this.params[key];
}
return this.params[this.index++];
};
return Params;
}());
exports["default"] = Params;