(line: string)
| 290 | } |
| 291 | |
| 292 | function parseAndroidPacketId(line: string): string | null { |
| 293 | const match = /\bpacket id (\d+)\b/i.exec(line); |
| 294 | return match?.[1] ?? null; |
| 295 | } |
| 296 | |
| 297 | function parseAndroidDurationMs(line: string): number | null { |
| 298 | const match = /\b(?:duration|elapsed request\/response time, ms)[:= ]+(\d+)\b/i.exec(line); |
no outgoing calls
no test coverage detected
searching dependent graphs…