1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Revert "Option to set null/undefined properties with setObjectProperty"

This reverts commit 92e40020be.
This commit is contained in:
Gerwin van Beek 2022-08-11 19:51:55 +02:00
parent cd8d8aec60
commit 357430d7bb

View File

@ -473,7 +473,7 @@ function setObjectProperty(msg,prop,value,createMissing) {
for (var i=0;i<length-1;i++) {
key = msgPropParts[i];
if (typeof key === 'string' || (typeof key === 'number' && !Array.isArray(obj))) {
if (hasOwnProperty.call(obj, key) && obj[key] != null) {
if (hasOwnProperty.call(obj, key)) {
if (length > 1 && ((typeof obj[key] !== "object" && typeof obj[key] !== "function") || obj[key] === null)) {
// Break out early as we cannot create a property beneath
// this type of value