(stack)
| 85 | } |
| 86 | |
| 87 | function formatLocation (stack) { |
| 88 | const filePath = formatFilePath(stack.fileName) |
| 89 | return `${filePath}:${stack.lineNumber}` |
| 90 | } |
| 91 | |
| 92 | function formatFilePath (filePath) { |
| 93 | const absolutePath = normalizeFilePath(filePath) |
no test coverage detected
searching dependent graphs…