typicaljoe / taffydb

TaffyDB - an open source JavaScript Database for your browser
http://taffydb.com
MIT License
2.21k stars 285 forks source link

Delete DB entry or the whole DB #150

Closed janstieler closed 6 years ago

janstieler commented 6 years ago

Hi,

how can I delete an entry in the DB or delete the whole DB? I havn't found anything about in the documenattion and width window.localStorage.clear(); I get an undefinied error.

Kindly

typicaljoe commented 6 years ago

Doing a db().remove() will remove all the records and if you used .store() to take advantage of localStorage that change will be passed on to localStorage as well (essentially leaving just an empty array in localStorage).