String supports pretty printing for JSONText types.
()
| 119 | |
| 120 | // String supports pretty printing for JSONText types. |
| 121 | func (j JSONText) String() string { |
| 122 | return string(j) |
| 123 | } |
| 124 | |
| 125 | // NullJSONText represents a JSONText that may be null. |
| 126 | // NullJSONText implements the scanner interface so |
no outgoing calls
no test coverage detected