UNPKG

waterbase

Version:
15 lines (14 loc) 353 B
"use strict"; class QueriedDocs { constructor(query, docs) { this.size = 0; this.docs = []; this.empty = false; this.query = {}; this.docs = docs; this.size = this.docs.length; this.empty = this.docs.length <= 0; this.query = query; } } module.exports = QueriedDocs;