(text)
| 528 | } |
| 529 | |
| 530 | function extractLargeOutputPath(text) { |
| 531 | const match = String(text || '').match(/Saved to:\s*(\/\S+)/); |
| 532 | return match ? match[1] : ''; |
| 533 | } |
| 534 | |
| 535 | function extractSessionMetadata(text) { |
| 536 | const source = String(text || ''); |
no outgoing calls
no test coverage detected