removeExtraSpaces fix error
This commit is contained in:
parent
5b41c206ac
commit
6b2c6b51f4
11
lib.commonjs/wordlists/generation/bossil.js
Normal file
11
lib.commonjs/wordlists/generation/bossil.js
Normal 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');
|
2048
lib.commonjs/wordlists/generation/tr.txt
Normal file
2048
lib.commonjs/wordlists/generation/tr.txt
Normal file
File diff suppressed because it is too large
Load Diff
BIN
src.ts/wordlists/.DS_Store
vendored
Normal file
BIN
src.ts/wordlists/.DS_Store
vendored
Normal file
Binary file not shown.
@ -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
Loading…
Reference in New Issue
Block a user