(value any)
| 66 | } |
| 67 | |
| 68 | func marshalValue(value any) (string, bool) { |
| 69 | b, err := json.Marshal(value) |
| 70 | if err != nil { |
| 71 | return "", false |
| 72 | } |
| 73 | return string(b), true |
| 74 | } |
| 75 | |
| 76 | func normalizeSlice(rv reflect.Value) []any { |
| 77 | normalized := make([]any, rv.Len()) |
no outgoing calls
no test coverage detected