From 7e8f80135a8a416366c93c4ae59d5b6dc7b93ad6 Mon Sep 17 00:00:00 2001 From: Bryan Roe Date: Fri, 27 Sep 2019 10:34:07 -0700 Subject: [PATCH] Removed unnecessary trim() from console help --- agents/meshcore.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agents/meshcore.js b/agents/meshcore.js index c768ad44..79196cf7 100644 --- a/agents/meshcore.js +++ b/agents/meshcore.js @@ -1696,10 +1696,10 @@ function createMeshCore(agent) fin += (f + ',\r\n'); f = ''; } - f += (((f != '') ? ', ' : ' ') + availcommands.shift().trim()); + f += (((f != '') ? ', ' : ' ') + availcommands.shift()); } if (f != '') { fin += f; } - response = 'Available commands: \r\n ' + fin.trim() + '.'; + response = 'Available commands: \r\n' + fin + '.'; break; } /*