k8s-deploy/lib/utilities/arrayUtils.js
2022-02-02 09:07:53 -05:00

11 lines
283 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.createInlineArray = void 0;
function createInlineArray(str) {
if (typeof str === "string") {
return str;
}
return str.join(",");
}
exports.createInlineArray = createInlineArray;