LF to CRLF
#4071
Replies: 2 comments
-
The library does not support this. |
Beta Was this translation helpful? Give feedback.
0 replies
-
To clarify what you're seeing, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
json data;
....
stream s=data.dump();
is create CRLF stream. but if i use
json data;
....
stream s=data.dump(4);
is create LF stream. but i need CRLF stream(with dump(4)).
Beta Was this translation helpful? Give feedback.
All reactions