* @param value A value of any type to convert into a JSON-format string.
(value: unknown)
| 35 | * @param value A value of any type to convert into a JSON-format string. |
| 36 | */ |
| 37 | transform(value: unknown): string { |
| 38 | ngDevMode && warnIfSignal('JsonPipe', value); |
| 39 | |
| 40 | return JSON.stringify(value, null, 2); |
| 41 | } |
| 42 | } |
nothing calls this directly
no test coverage detected