(string: string)
| 74 | // want to trim those, because they may have pointers to the column/character |
| 75 | // which will get misaligned. |
| 76 | const trimPaths = (string: string) => |
| 77 | STACK_PATH_REGEXP.test(string) ? trim(string) : string; |
| 78 | |
| 79 | const getRenderedCallsite = ( |
| 80 | fileContent: string, |
no test coverage detected