db.destroy([options], [callback])
Delete the database. Note that this has no impact on other replicated databases.
Example Usage
db.destroy().then(function (response) {
// success
}).catch(function (err) {
console.log(err);
});
Example Response:
{
"ok" : true
}