(path: string)
| 144 | } |
| 145 | |
| 146 | const dottedToJsonPath = (path: string) => |
| 147 | path |
| 148 | .split(".") |
| 149 | .filter((p) => p !== "-1") |
| 150 | .join(".") |
| 151 | |
| 152 | const sqlStringLiteral = (value: string) => `'${value.replaceAll("'", "''")}'` |
| 153 |
no test coverage detected
searching dependent graphs…