disable utf-8 escaping in json.stringify by default & add utfEscape argument to json.stringify & update network.post behaviour for pre-serialized data
This commit is contained in:
+4
-1
@@ -11,6 +11,9 @@ namespace json {
|
||||
dv::value parse(std::string_view source);
|
||||
|
||||
std::string stringify(
|
||||
const dv::value& value, bool nice, const std::string& indent=" "
|
||||
const dv::value& value,
|
||||
bool nice,
|
||||
const std::string& indent = " ",
|
||||
bool escapeUtf8 = false
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user