This commit is contained in:
2024-06-06 18:15:30 +05:00
parent 63fea5da4b
commit 4a75925f86
59 changed files with 2733 additions and 5840 deletions
+5
View File
@@ -0,0 +1,5 @@
function removeSpaces(value: string) {
return value.replace(/\s+/g, " ").trim();
}
export default removeSpaces;