Files
oneclickvirt.github.io/node_modules/@algolia/autocomplete-shared/dist/esm/getItemsCount.js
spiritlhl 6f5966067d Update
2023-06-20 00:59:07 +00:00

9 lines
213 B
JavaScript

export function getItemsCount(state) {
if (state.collections.length === 0) {
return 0;
}
return state.collections.reduce(function (sum, collection) {
return sum + collection.items.length;
}, 0);
}