Files
k8s-deploy/src/utilities/arrayUtils.ts
T
2022-06-24 16:57:45 -04:00

7 lines
150 B
TypeScript

export function createInlineArray(str: string | string[]): string {
if (typeof str === 'string') {
return str
}
return str.join(',')
}