From 0819b1568a8c34ce0e717ff9b40286537d673542 Mon Sep 17 00:00:00 2001 From: Alexander Goryushkin Date: Wed, 21 Feb 2024 14:02:01 -0300 Subject: [PATCH] change ?? operator by || --- src/json-utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/json-utils.js b/src/json-utils.js index abb274c1f..546954b3f 100644 --- a/src/json-utils.js +++ b/src/json-utils.js @@ -211,7 +211,7 @@ function filterJSONstreet (removeProps, renameProps, streetJSON) { } } - return compAttributes ?? value; + return compAttributes || value; }); // rename components for (var renameKey in renameProps) {