@topgroup/diginext
Version:
A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.
13 lines (12 loc) • 358 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.paramsToObject = void 0;
const paramsToObject = (params) => {
const result = {};
for (const [key, value] of params) {
// each 'entry' is a [key, value] tupple
result[key] = value;
}
return result;
};
exports.paramsToObject = paramsToObject;