removeAll
function
removeAll()
Option name | Type | Description |
---|---|---|
[filter] | Function | Function returning |
return | Promise |
removes all existing objects
function removeAll (filter) {
var objects
return this.allDocs({
include_docs: true
})
.then(function (res) {
objects = res.rows
.filter(isntDesignDoc)
.map(function (row) {
return toObject(row.doc)
})
if (typeof filter === 'function') {
objects = objects.filter(filter)
}
return objects.map(function (object) {
object._deleted = true
return toDoc(addTimestamps(object))
})
})
.then(this.bulkDocs.bind(this))
.then(function (results) {
return results.map(function (result, i) {
objects[i]._rev = result.rev
return objects[i]
})
})
}