mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-03-07 18:52:15 +08:00
11 lines
283 B
JavaScript
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;
|