UNPKG

@meilisearch/instant-meilisearch

Version:
12 lines 430 B
export function adaptTotalHits(searchResponse) { const { hitsPerPage = 0, totalPages = 0, estimatedTotalHits, totalHits, } = searchResponse; if (estimatedTotalHits != null) { return estimatedTotalHits; } else if (totalHits != null) { return totalHits; } // Should not happen but safeguarding just in case return hitsPerPage * totalPages; } //# sourceMappingURL=total-hits-adapter.js.map