From 4b6ad9775b3e4ca409418cef5ecac8886a80e088 Mon Sep 17 00:00:00 2001 From: Book Pauk Date: Thu, 25 Aug 2022 03:15:19 +0700 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=B1=D1=80=D0=B0=D0=BB=20=D0=BE=D1=88?= =?UTF-8?q?=D0=B8=D0=B1=D0=BE=D1=87=D0=BD=D1=8B=D0=B5=20=D0=B8=D0=B7=D0=BC?= =?UTF-8?q?=D0=B5=D0=BD=D0=B5=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/core/InpxParser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/core/InpxParser.js b/server/core/InpxParser.js index b22517c..7f968e9 100644 --- a/server/core/InpxParser.js +++ b/server/core/InpxParser.js @@ -89,7 +89,7 @@ class InpxParser { const rows = inpBuf.toString().split('\n'); for (const row of rows) { - let line = `${row}`; //копируем строку, немного эффективнее используется память в итоге + let line = row; if (!line) continue;