(str: string)
| 62 | : executeCommand; |
| 63 | |
| 64 | export const escapeId = (str: string) => |
| 65 | arrayJoin( |
| 66 | arrayMap(strSplit(str, DOT), (part) => `"${strReplace(part, /"/g, '""')}"`), |
| 67 | DOT, |
| 68 | ); |
| 69 | |
| 70 | export const escapeIds = (...ids: Ids) => escapeId(arrayJoin(ids, '_')); |
| 71 |
no test coverage detected
searching dependent graphs…