(value: string | undefined)
| 218 | } |
| 219 | |
| 220 | export function fingerprint(value: string | undefined): string | undefined { |
| 221 | if (!value) return undefined; |
| 222 | return crypto.createHash('sha256').update(value).digest('hex').slice(0, 12); |
| 223 | } |
| 224 | |
| 225 | function resolveConnectionProfile( |
| 226 | state: RemoteConnectionState, |
no test coverage detected
searching dependent graphs…