(filePath)
| 50 | } |
| 51 | |
| 52 | function readText(filePath) { |
| 53 | try { |
| 54 | return fs.readFileSync(filePath, 'utf8'); |
| 55 | } catch { |
| 56 | return null; |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | function lineValue(content, label) { |
| 61 | const pattern = new RegExp(`^${label}:\\s*(.+)$`, 'm'); |
no outgoing calls
no test coverage detected