mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-30 14:22:05 +00:00
13 lines
251 B
TypeScript
13 lines
251 B
TypeScript
export function getQuotedCqlIdentifier(identifier: string): string {
|
|
let result = identifier;
|
|
if (!identifier) {
|
|
return result;
|
|
}
|
|
|
|
if (identifier.includes('"')) {
|
|
result = identifier.replace(/"/g, '""');
|
|
}
|
|
|
|
return `"${result}"`;
|
|
}
|