(funcName: string)
| 86 | * Get human-readable description of what data type a function may contain |
| 87 | */ |
| 88 | export function getFunctionDescription(funcName: string): string { |
| 89 | return FUNCTION_DESCRIPTIONS[funcName] || 'sensitive data'; |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * Get all detected data types as a readable list |
nothing calls this directly
no outgoing calls
no test coverage detected