(value: any)
| 260 | /** Calculates bytes size of input object */ |
| 261 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 262 | function jsonSize(value: any): number { |
| 263 | return utf8Length(JSON.stringify(value)); |
| 264 | } |
| 265 | |
| 266 | /** |
| 267 | * Normalizes URLs in exceptions and stacktraces to a base path so Sentry can fingerprint |
no test coverage detected