Comparing version 1.2.0 to 1.2.1
17
app.js
@@ -20,2 +20,9 @@ const request = require('node-superfetch'); | ||
this.çıkart = this.constructor.çıkart; | ||
this.set = this.constructor.ayarla; | ||
this.delete = this.constructor.sil; | ||
this.fetch = this.constructor.veri; | ||
this.has = this.constructor.varMı; | ||
this.ekle = this.constructor.ekle; | ||
this.çıkart = this.constructor.çıkart; | ||
}; | ||
@@ -26,7 +33,3 @@ | ||
if (!this.veriDosya) throw new Error("Veri dosyası belirtilmemiş!"); | ||
if(this.db.has(alınacak).value() == true) { | ||
return this.db.get(alınacak).value() | ||
} else { | ||
throw new TypeError("Böyle bir veri bulunamadı.") | ||
} | ||
return this.db.has(alınacak) ? this.db.get(alınacak).value() : undefined | ||
} else { | ||
@@ -49,9 +52,5 @@ throw new TypeError("Lütfen alınacak veriyi girin.") | ||
if (!this.veriDosya) throw new Error("Veri dosyası belirtilmemiş!"); | ||
if(this.db.has(silinecek).value() == true) { | ||
this.db.unset(silinecek) | ||
.write() | ||
return true | ||
} else { | ||
throw new TypeError("Böyle bir veri bulunamadı.") | ||
} | ||
} else { | ||
@@ -58,0 +57,0 @@ throw new TypeError("Lütfen silinecek veriyi girin.") |
@@ -30,3 +30,3 @@ { | ||
}, | ||
"version": "1.2.0" | ||
"version": "1.2.1" | ||
} |
@@ -6,5 +6,4 @@ # CroxyApi - Gelişmiş Bir Türkçe Modül! | ||
#Yenilikler | ||
* Veritabanı baştan sona yenilendi. | ||
* Veritabanına ekle ve çıkart fonksiyonları eklendi. | ||
* Süre fonksiyonu kaldırıldı. | ||
* Veritabanında iyileştirmeler yapıldı. | ||
* Veritabanındaki "db.ayarla" gibi fonksiyonlara alternatif olarak "db.set" gibi fonksiyonlar eklendi. | ||
@@ -17,3 +16,3 @@ #Dökümantasyon | ||
#Veritabanı Sistemi | ||
*Veritabanı kurulumu aşağıda gösterilmiştir. | ||
* Veritabanı kurulumu aşağıda gösterilmiştir. | ||
```js | ||
@@ -20,0 +19,0 @@ const croxy = require('croxy-api') |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
14320
200
129