huridocs/uwazi

View on GitHub
app/react/Markdown/CustomHooks/utils/parsingUtils.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
function findBucketsByCountry(set, countryKey, key) {
  return set.aggregations.all[countryKey].buckets.find(country => country.key === key);
}

export default {
  findBucketsByCountry,
};