1export function paramAsString(str: string | string[]): string { 2 if (Array.isArray(str)) { 3 return str[0]; 4 } 5 return str; 6}