( value: string, maxLength = MAX_TELEMETRY_STRING_LENGTH, )
| 19 | } |
| 20 | |
| 21 | export function redactTelemetryString( |
| 22 | value: string, |
| 23 | maxLength = MAX_TELEMETRY_STRING_LENGTH, |
| 24 | ): string { |
| 25 | return truncateTelemetryString(redactFilePaths(redactUrlQueryStrings(value)), maxLength); |
| 26 | } |
no test coverage detected