getSanitizerNames()
Returns an array of all generated sanitizer function names.
Example:
1console.log(getSanitizerNames());2// ["sanitizePath", "sanitizeEmail", "sanitizeIp", ...]
Edge Cases & Notes:
- Sanitizers operate safely on non-string values by returning them unchanged.
deepSanitizecan handle nested arrays and objects of arbitrary depth.- Custom replacements allow flexible masking beyond default
[SANITIZED:<type>].