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
keepWsc: true,
raw hjson string
var text = '{\ "last.access": true,\ // "last.set": true,\ // "skills.use": true,\ // "last.wrap.*": true,\ }';
parse it and then base it back into text
var data = HJSON.parse(text, {keepWsc: true}); text = HJSON.stringify(data, { keepWsc: true, bracesSameLine: true, quotes: 'all', separator: true, space: '\t', });
as a result, we get the following string
'{\ "last.access": true // "last.set": true,\ // "skills.use": true,\ // "last.wrap.*": true,\ }';
repeating these steps several times teaching such a line
'{\ "last.access": true // "last.set": true, // "skills.use": true, // "last.wrap.*": true,\ }';
The text was updated successfully, but these errors were encountered:
No branches or pull requests
raw hjson string
parse it and then base it back into text
as a result, we get the following string
repeating these steps several times teaching such a line
The text was updated successfully, but these errors were encountered: