We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simple sample code:
var jsYaml = require("js-yaml") console.log(jsYaml.safeDump({ a: "a", b: "b", c: "c" }, { flowLevel: 0, condenseFlow: true }))
This results in a broken string like this:
{"a":a", b":b", c":c}\n
Without condense flow the result works as expected:
{a: a, b: b, c: c}\n
The text was updated successfully, but these errors were encountered:
Those params should not be combined together. If one wish to use both - that's not our client :)
Sorry, something went wrong.
No branches or pull requests
Simple sample code:
This results in a broken string like this:
Without condense flow the result works as expected:
The text was updated successfully, but these errors were encountered: