(data []byte, v any)
| 28 | } |
| 29 | |
| 30 | func (j jsoniterApi) Unmarshal(data []byte, v any) error { |
| 31 | return json.Unmarshal(data, v) |
| 32 | } |
| 33 | |
| 34 | func (j jsoniterApi) MarshalIndent(v any, prefix, indent string) ([]byte, error) { |
| 35 | return json.MarshalIndent(v, prefix, indent) |