Haoming 2025-02-14 15:37:53 +08:00
parent 6d6d029245
commit 47cf08b7f0
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ class LeFormatter {
return match.replace(/\,\s+/g, ',');
});
// Remove empty before Colon
input = input.replace(/\,\s*\:/g, ':');
input = input.replace(/\,\s*\:(\d)/g, ':$1');
return input;
}