Comment Remover

Removes code comments with support for various comment styles and documentation preservation

Örnek

Girdi:

// Bu bir yorum satırıdır
                
function hesapla() {
  // Değişken tanımlama
  let sonuc = 0;
  /* Bu bir çok satırlı
     yorum bloğudur */
  for (let i = 0; i < 10; i++) {
    sonuc += i; // Toplama işlemi
  }
  return sonuc;
}

Dil: JavaScript

Çıktı:

function hesapla() {
  let sonuc = 0;
  for (let i = 0; i < 10; i++) {
    sonuc += i; 
  }
  return sonuc;
}