Open
Description
Looks like a for loop is used for iterating the properties in the objects
for (let key in data) {
if (data[key] !== undefined) {
length++;
}
}
This also iterates the properties defined in prototypes which I don't think is an expected behaviour.
The current typescript version of msgpack is using Object.keys
that does not returns those properties.
What do you think?
Metadata
Metadata
Assignees
Labels
No labels