(result jsonOperationResult)
| 125 | } |
| 126 | |
| 127 | func normalizeJSONOperationResult(result jsonOperationResult) jsonOperationResult { |
| 128 | result.Input = normalizeJSONObject(result.Input) |
| 129 | result.Result = normalizeJSONObject(result.Result) |
| 130 | return result |
| 131 | } |
| 132 | |
| 133 | func normalizeJSONObject(value any) any { |
| 134 | if value == nil { |
no test coverage detected