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
When i have the following :
a= b=${a}
I got an error because 'a' property is not found.
I guess it's because null properties are ignored ? Would be great to add an option for this.
I added this reviver function to avoid the error, by returning and empty string, but it's not really what i want :
reviver: function (key, value, section) { if (key != null && value == null) { return ''; } else { //Returns all the lines return this.assert(); } }
The text was updated successfully, but these errors were encountered:
I've run into the same issue where I have a blank value in one of my properties. Are there any plans to support this?
Sorry, something went wrong.
I have the same issue, too. When I want to set an empty string value, it will be parsed into 'null'. Do you have any plans to fix it ?
No branches or pull requests
When i have the following :
I got an error because 'a' property is not found.
I guess it's because null properties are ignored ?
Would be great to add an option for this.
I added this reviver function to avoid the error, by returning and empty string, but it's not really what i want :
The text was updated successfully, but these errors were encountered: