(str: string)
| 3 | import { ColumnType } from "@outerbase/sdk-transform"; |
| 4 | |
| 5 | export function escapeIdentity(str: string) { |
| 6 | return `"${str.replace(/"/g, `""`)}"`; |
| 7 | } |
| 8 | |
| 9 | export function unescapeIdentity(str: string) { |
| 10 | let r = str.replace(/^["`[]/g, ""); |
no outgoing calls
no test coverage detected