(value: string)
| 6 | } |
| 7 | |
| 8 | function redactUrlQueryStrings(value: string): string { |
| 9 | return value.replace(/\b(https?:\/\/[^\s?]+)\?[^\s]*/g, "$1?…"); |
| 10 | } |
| 11 | |
| 12 | function redactFilePaths(value: string): string { |
| 13 | return value |
no outgoing calls
no test coverage detected