Skip to content

Empty/Null property not found #21

@jmengelle

Description

@jmengelle

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions