isJSONRawMessage returns true if the type is encoding/json.RawMessage.
(typ reflect.Type)
| 353 | |
| 354 | // isJSONRawMessage returns true if the type is encoding/json.RawMessage. |
| 355 | func isJSONRawMessage(typ reflect.Type) bool { |
| 356 | return typ == JSONRawMessageType |
| 357 | } |
| 358 | |
| 359 | // isModuleMapType returns true if the type is map[string]json.RawMessage. |
| 360 | // It assumes that the string key is the module name, but this is not |
no outgoing calls
no test coverage detected