NewEncoder is documented at https://golang.org/pkg/encoding/json/#NewEncoder
(w io.Writer)
| 499 | |
| 500 | // NewEncoder is documented at https://golang.org/pkg/encoding/json/#NewEncoder |
| 501 | func NewEncoder(w io.Writer) *Encoder { |
| 502 | return &Encoder{writer: w, flags: EscapeHTML | SortMapKeys | appendNewline} |
| 503 | } |
| 504 | |
| 505 | // Encode is documented at https://golang.org/pkg/encoding/json/#Encoder.Encode |
| 506 | func (enc *Encoder) Encode(v any) error { |
no outgoing calls
searching dependent graphs…