Paulo Campos
Results
1
comments of
Paulo Campos
That happens when you have examples with null values. In the function `mapWalkObject` just replace: ` const value = obj[key];` with: `const value = obj[key]; if(!value) continue;` for a quick...