(u: unknown)
| 129 | * @since 3.10.0 |
| 130 | */ |
| 131 | export function redact(u: unknown): unknown { |
| 132 | if (isRedactable(u)) return getRedacted(u) |
| 133 | return u |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * Returns the result of calling `[symbolRedactable]` on a value that is |
no test coverage detected