APIv4 Explorer - Fix trailing whitespace
authorcolemanw <coleman@civicrm.org>
Thu, 25 May 2023 11:40:59 +0000 (07:40 -0400)
committercolemanw <coleman@civicrm.org>
Thu, 25 May 2023 11:40:59 +0000 (07:40 -0400)
ang/api4Explorer/Explorer.js

index 894de01ef3580a454f85d6f1ba5328915270c23e..5f031ca28b6af42136c027dfc647f918936a6a8c 100644 (file)
         }
         $.each(val, function(k, v) {
           var ts = localizable && localizable.includes(k) && _.isString(v)  && v.length ? 'E::ts(' : '';
-          ret += (ret ? ', ' : '') + newLine + indent + "'" + k + "' => " + ts + phpFormat(v, indentChild, indentChildren, localizable) + (ts ? ')' : '');
+          var leadingComma = !ret ? '' : (newLine ? ',' : ', ');
+          ret += leadingComma + newLine + indent + "'" + k + "' => " + ts + phpFormat(v, indentChild, indentChildren, localizable) + (ts ? ')' : '');
         });
         return '[' + ret + trailingComma + newLine + baseLine + ']';
       }
           return '[]';
         }
         $.each(val, function(k, v) {
-          ret += (ret ? ', ' : '') + newLine + indent + phpFormat(v, indentChild, indentChildren, localizable);
+          var leadingComma = !ret ? '' : (newLine ? ',' : ', ');
+          ret += leadingComma + newLine + indent + phpFormat(v, indentChild, indentChildren, localizable);
         });
         return '[' + ret + trailingComma + newLine + baseLine + ']';
       }