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
The following
#!/bin/sh . /usr/share/libubox/jshn.sh json_init json_add_array array json_add_string "" "item1" json_add_string "" "item2" json_add_string "" "item3" json_close_array json_add_array array json_add_string "" "itemA" json_add_string "" "itemB" json_add_string "" "itemC" json_close_array json_dump
outputs
{ "array": [ "itemA" ] }
which is surprising. I've expected it to output
{ "array": [ "itemA", "itemB", "itemC" ] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following
outputs
which is surprising. I've expected it to output
The text was updated successfully, but these errors were encountered: