(value any)
| 323 | } |
| 324 | |
| 325 | func writeDelegateJSON(value any) error { |
| 326 | encoder := json.NewEncoder(os.Stdout) |
| 327 | encoder.SetIndent("", " ") |
| 328 | encoder.SetEscapeHTML(false) |
| 329 | return encoder.Encode(value) |
| 330 | } |
no outgoing calls
no test coverage detected