generated from CodecoolArchive/mastering-git-workshop-template-2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.js
More file actions
144 lines (143 loc) · 2.56 KB
/
data.js
File metadata and controls
144 lines (143 loc) · 2.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
const getBeers = () => ([
{
brewery: "71 Brewing",
name: "Rivet red",
type: ["Ale", "Red"],
score: 649,
abv: 7
},
{
brewery: "Right Proper",
name: "Raised By Wolves",
type: ["Ale", "Pale", "American"],
score: 843,
abv: 5
},
{
brewery: "3 Floyds Brewing",
name: "Zombie Dust",
type: ["Ale", "Pale", "American"],
score: 960,
abv: 6.5
},
{
brewery: "Whalers",
name: "Rise",
type: ["Ale", "Pale", "American"],
score: 924,
abv: 6.5
},
{
brewery: "Half Acre",
name: "Daisy Cutter",
type: ["Pale", "Ale"],
score: 980,
abv: 5.2
},
{
brewery: "Main St",
name: "Naked Fox",
type: ["IPA"],
score: 607,
abv: 6.8
},
{
brewery: "Dogfish Head",
name: "90 Minute",
type: ["IPA", "Imperial"],
score: 606,
abv: 9
},
{
brewery: "Night Shift",
name: "The Whole Nine Years",
type: ["IPA", "Double", "American"],
score: 589,
abv: 8
},
{
brewery: "Anderson Valley",
name: "Hop Ottin",
type: ["IPA", "American"],
score: 771,
abv: 7
},
{
brewery: "Voodoo Ranger",
name: "Juice Force",
type: ["IPA", "Imperial", "Hazy"],
score: 921,
abv: 9.5
},
{
name: "Mango Bay",
brewery: "Mad Scientist Beer",
type: ["Pale Ale", "American"],
score: 521,
abv: 5.2
},
{
name: "Távoli Galaxis",
brewery: "Rothbeer Brewery",
type: ["IPA", "American"],
score: 671,
abv: 6.1
},
{
name: "Flying Rabbit",
brewery: "MONYO Brewing Co.",
type: ["IPA", "American"],
score: 861,
abv: 6.5
},
{
name: "Liquid Cocaine",
brewery: "Mad Scientist Beer",
type: ["IPA", "Imperial"],
score: 998,
abv: 9
},
{
name: "Organic Chocolate Stout",
brewery: "Samuel Smith Old Brewery",
type: ["Stout", "English"],
score: 512,
abv: 5
},
{
name: "Bracia",
brewery: "Thornbridge Brewery",
type: ["Ale", "English"],
score: 721,
abv: 10
},
{
name: "Oatmeal Stout",
brewery: "Samuel Smith Old Brewery",
type: ["Stout", "Oatmeal"],
score: 687,
abv: 5
},
{
name: "Black Tokyo Horizon",
brewery: "BrewDog",
type: ["Stout", "American", "Imperial"],
score: 929,
abv: 17.2
},
{
name: "Vintage Ale",
brewery: "Fuller's",
type: ["Old", "Ale"],
score: 491,
abv: 8.5
},
{
name: "All the Leaves are Brown",
brewery: "Tempest Brewing Company",
type: ["Brown", "Ale", "American"],
score: 534,
abv: 11.2
},
]);
module.exports = getBeers