From cdd46c5c7bd95b8ae07110626352ed1e975b9b1c Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Tue, 20 May 2025 11:59:32 -0400 Subject: [PATCH] Minor change --- tools/jsonpath-tool.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/jsonpath-tool.html b/tools/jsonpath-tool.html index abe50410f..17a5877dd 100644 --- a/tools/jsonpath-tool.html +++ b/tools/jsonpath-tool.html @@ -43,8 +43,8 @@ main {

uBO-flavored JSONPath tool

- - + +
 
@@ -65,7 +65,7 @@ main { } const out = []; for ( const i of a ) { - out.push(`[ ${i.map(j => JSON.stringify(j)).join(' ,')} ]`); + out.push(`[ ${i.map(j => JSON.stringify(j)).join(', ')} ]`); } return out.join('\n'); }