UNPKG

firestore-mock

Version:

Firestore intsance mock for the Firebase Admin SDK

12 lines (10 loc) 236 B
function TimestampMock(date) { this.date = date; } TimestampMock.prototype.toMillis = function() { return this.date.getTime(); }; TimestampMock.prototype.toDate = function() { return this.date; }; module.exports = TimestampMock;