(value: string)
| 11 | } |
| 12 | |
| 13 | function escapeLikePattern(value: string) { |
| 14 | return value.replace(/[\\%_]/g, (character) => `\\${character}`) |
| 15 | } |
| 16 | |
| 17 | function getDisambiguatedThreadId(session: SessionSummaryRecord) { |
| 18 | const suffix = createHash('sha1').update(session.sessionPath).digest('hex').slice(0, 8) |
no outgoing calls
no test coverage detected