Removed unnecessary trim() from console help

Bryan Roe committed Sep 27, 2019 at 10:34 UTC 7e07e8cd808d93d0ac56e00b284d307f1d28c370
1 file changed +2 -2
agents/meshcore.js
+2 -2
@@ -1696,10 +1696,10 @@ function createMeshCore(agent)
1696 fin += (f + ',\r\n');
1697 f = '';
1698 }
1699 - f += (((f != '') ? ', ' : ' ') + availcommands.shift().trim());
1699 + f += (((f != '') ? ', ' : ' ') + availcommands.shift());
1700 }
1701 if (f != '') { fin += f; }
1702 - response = 'Available commands: \r\n ' + fin.trim() + '.';
1702 + response = 'Available commands: \r\n' + fin + '.';
1703 break;
1704 }
1705 /*