Closed
Description
In the old version, the XML properties they were not being treated as an array. With the new version behavior changed all properties are now array.
I think the previous behavior was correct.
Old version:
if (_this.options.mergeAttrs) {
obj[processedKey] = newValue;
}
New version change:
if (_this.options.mergeAttrs) {
_this.assignOrPush(obj, processedKey, newValue);
}
Metadata
Metadata
Assignees
Labels
No labels