| 124 | } |
| 125 | |
| 126 | TString WriteJson(const TJsonValue* value, bool formatOutput, bool sortkeys, bool validateUtf8) { |
| 127 | TStringStream ss; |
| 128 | WriteJson(&ss, value, formatOutput, sortkeys, validateUtf8); |
| 129 | return ss.Str(); |
| 130 | } |
| 131 | |
| 132 | TString WriteJson(const TJsonValue& value, bool formatOutput, bool sortkeys, bool validateUtf8) { |
| 133 | TStringStream ss; |