mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-21 18:59:27 +08:00
7 lines
150 B
TypeScript
7 lines
150 B
TypeScript
export function createInlineArray(str: string | string[]): string {
|
|
if (typeof str === 'string') {
|
|
return str
|
|
}
|
|
return str.join(',')
|
|
}
|