UNPKG

deezer-node

Version:

Deezer platformundan API Key olmadan bilgiler çekebilmenizi sağlar.

7 lines 311 B
String.prototype.turkishToEnglish = function() { var g = ""; for (const harf of this) { g += harf.split("ı").join("i").split("İ").join("I").toLowerCase().replace("ğ","g").replace("ç","c").replace("ü","u").replace("ö","o").replace("ş","s").replace(/â/, "a"); }; return g; };