Map is a byte slice that should parse as a string encoding a JSON object. This is checked in UnmarshalJSON.
| 29 | // Map is a byte slice that should parse as a string encoding a JSON |
| 30 | // object. This is checked in UnmarshalJSON. |
| 31 | type Map []byte |
| 32 | |
| 33 | // MarshalJSON satisfies the json.Marshaler interface. |
| 34 | func (m Map) MarshalJSON() ([]byte, error) { |
no outgoing calls
no test coverage detected