From 43aea25e0a369437c0a5b84ae599d5f1c0d8a7c6 Mon Sep 17 00:00:00 2001 From: MohammadHoseinPaymard Date: Mon, 26 May 2025 18:40:41 +0330 Subject: [PATCH] update util.js --- util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.js b/util.js index 0ff367f..a5312bf 100644 --- a/util.js +++ b/util.js @@ -394,7 +394,7 @@ async function saveLargeObject(obj, filename) { for (let i = 0; i < entries.length; i++) { const [key, value] = entries[i]; // stringify مقدار - const chunk = JSON.stringify(value, null, 2) + const chunk = JSON.stringify(value, null, 1) .split('\n') .map((line, idx) => idx === 0 ? ` "${key}": ${line}`