UNPKG

mock-cloud-firestore

Version:
24 lines (19 loc) 353 B
export default class QuerySnapshot { constructor(data) { this._data = data; } get docs() { return this._data; } get empty() { return this._data.length === 0; } get size() { return this._data.length; } forEach(callback) { for (const data of this._data) { callback(data); } } }