doc.yeswiki.pro/node_modules/@algolia/autocomplete-shared/dist/esm/getItemsCount.js

9 lines
213 B
JavaScript
Raw Normal View History

2023-05-20 16:37:42 +00:00
export function getItemsCount(state) {
if (state.collections.length === 0) {
return 0;
}
return state.collections.reduce(function (sum, collection) {
return sum + collection.items.length;
}, 0);
}