(queryString: string, values: any[])
| 107 | |
| 108 | // Very useful for debugging queries |
| 109 | export function getFinalPostgresQuery(queryString: string, values: any[]): string { |
| 110 | return queryString.replace(/\$([0-9]+)/g, (m, v) => JSON.stringify(values[parseInt(v) - 1])) |
| 111 | } |
| 112 | |
| 113 | export function shouldStoreLog( |
| 114 | pluginLogLevel: PluginLogLevel, |
no outgoing calls
no test coverage detected
searching dependent graphs…