PouchDB: How to delete all databases?

1

From what I saw in the PouchDB documentation it is possible to apply db.destroy() , but only in the database created / chosen.

Is it possible to delete all databases (directly from PouchDB)?

    
asked by anonymous 02.08.2016 / 19:30

1 answer

1

PouchDB provides a plugin for this:

link

PouchDB.resetAllDbs();
    
02.08.2016 / 19:38