(value any)
| 131 | } |
| 132 | |
| 133 | func normalizeJSONObject(value any) any { |
| 134 | if value == nil { |
| 135 | return struct{}{} |
| 136 | } |
| 137 | return value |
| 138 | } |
| 139 | |
| 140 | func emptyJSONWarnings() []jsonWarning { |
| 141 | return []jsonWarning{} |
no outgoing calls
no test coverage detected