-
Notifications
You must be signed in to change notification settings - Fork 42
Open
Description
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();
}
}
Metadata
Metadata
Assignees
Labels
No labels