@shushed/helpers 0.0.235 → 0.0.236
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -81,6 +81,9 @@ class PubSubHelper extends runtime_1.default {
|
|
|
81
81
|
}
|
|
82
82
|
for (const key in nextAttributes) {
|
|
83
83
|
let resultForKey;
|
|
84
|
+
if (nextAttributes[key] === null || nextAttributes[key] === undefined) {
|
|
85
|
+
continue;
|
|
86
|
+
}
|
|
84
87
|
if (typeof nextAttributes[key] === 'function') {
|
|
85
88
|
resultForKey = nextAttributes[key](x, index);
|
|
86
89
|
}
|