| 40 | }; |
| 41 | |
| 42 | inline TString PrettifyJson(TStringBuf in, bool unquote = false, ui8 padding = 4, bool sq = false) { |
| 43 | return TJsonPrettifier::Prettifier(unquote, padding, sq).Prettify(in); |
| 44 | } |
| 45 | |
| 46 | inline bool PrettifyJson(TStringBuf in, IOutputStream& out, bool unquote = false, ui8 padding = 4, bool sq = false) { |
| 47 | return TJsonPrettifier::Prettifier(unquote, padding, sq).Prettify(in, out); |
no test coverage detected