2022-01-21 18:50:16 +01:00
|
|
|
/* eslint-disable */
|
2022-01-21 15:41:53 +01:00
|
|
|
const breweries = data
|
|
|
|
const totals = {}
|
|
|
|
|
2022-01-21 18:50:16 +01:00
|
|
|
for (let brewery of breweries) {
|
|
|
|
const state = brewery.state
|
|
|
|
if (totals[state] == null) {
|
|
|
|
totals[state] = 1
|
|
|
|
} else {
|
|
|
|
totals[state]++
|
2022-01-21 15:41:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
const entries = Object.entries(totals)
|
|
|
|
return entries.map(([state, count]) => ({ state, count }))
|