removeExtraSpaces fix error

This commit is contained in:
zinderud 2024-03-19 23:50:17 +03:00
parent 5b41c206ac
commit 6b2c6b51f4
5 changed files with 2067 additions and 7 deletions

View File

@ -0,0 +1,11 @@
// txt dosyası içerisindeki birden fazla boşlukları kaldırmakve yenibir txt dosyası oluşturmak için kullanılır.
const fs = require('fs');
const path = require('path');
function removeExtraSpaces(inputFilePath, outputFilePath) {
const input = fs.readFileSync(inputFilePath, 'utf8');
const output = input.replace(/\s+/g, '\n');
fs.writeFileSync(outputFilePath, output);
}
removeExtraSpaces('./tr.txt', './tr1.txt');

File diff suppressed because it is too large Load Diff

BIN
src.ts/wordlists/.DS_Store vendored Normal file

Binary file not shown.

View File

@ -114,8 +114,8 @@ armoni
aroma
arsa
arsiz
artı
artiz
arti
artan
aruz
asansor
asayis
@ -1501,7 +1501,7 @@ sepet
seramik
sert
serdar
serkeş
serkes
sergi
serhat
sepken
@ -1594,7 +1594,7 @@ susam
suskun
sukse
sukut
sul
sulk
sunnet
supurge
surahi

File diff suppressed because one or more lines are too long