(key: string)
| 95 | } |
| 96 | |
| 97 | export function isLargeDataKey(key: string): boolean { |
| 98 | return LARGE_DATA_KEYS.has(key) |
| 99 | } |
| 100 | |
| 101 | export function redactApiKeys(obj: any): any { |
| 102 | if (obj === null || obj === undefined) { |
no outgoing calls
no test coverage detected