@mittwald/kubernetes
Version:
Kubernetes client library
12 lines • 370 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const _ = require("lodash");
function selectorToQueryString(selector) {
const v = [];
_.forEach(selector, (value, label) => {
v.push(label + "=" + value);
});
return v.join(",");
}
exports.selectorToQueryString = selectorToQueryString;
//# sourceMappingURL=label.js.map