-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
236 lines (231 loc) · 4.52 KB
/
index.js
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
const oldFashioned = {
name: 'Old Fashioned',
description: 'This drink was invented in 1806.',
instructions: [
'Put all ingredients into mixing glass',
'Stir with ice for 18 seconds',
'Strain over fresh ice into chilled Old Fashioned glass',
'Express orange peel and drop into the glass'
],
ingredients: [
{
ingredient: 'Whiskey',
amount: {
quantity: 2,
unit: 'oz'
}
},
{
ingredient: 'Simple syrup',
amount: {
quantity: 1,
unit: 'barspoon'
}
},
{
ingredient: 'Angostura bitters',
amount: {
quantity: 3,
unit: 'dashes'
}
},
{
ingredient: 'Orange peel',
amount: {
quantity: 1,
unit: 'for garnish'
}
}
]
};
const tommyC = {
name: 'Tom Collins',
description: 'This cocktail gets its name from the use of Old Tom Gin.',
instructions: [
'Put all ingredients into shaker tin',
'Pour club soda into chilled Collins glass filled with fresh ice',
'Shake other ingredients with ice for 10 seconds',
'Strain into the Collins glass',
'Express lemon peel and drop into the glass'
],
ingredients: [
{
ingredient: 'Gin',
amount: {
quantity: 2,
unit: 'oz'
}
},
{
ingredient: 'Lemon juice',
amount: {
quantity: 0.75,
unit: 'oz'
}
},
{
ingredient: 'Simple syrup',
amount: {
quantity: 0.75,
unit: 'oz'
}
},
{
ingredient: 'Club soda',
amount: {
quantity: 2,
unit: 'oz'
}
},
{
ingredient: 'Lemon peel',
amount: {
quantity: 1,
unit: 'for garnish'
}
}
]
};
const daiquiri = {
name: 'Daiquiri',
description: 'Classic Cuban cocktail.',
instructions: [
'Put all ingredients into shaker tin',
'Shake ingredients with ice for 10 seconds',
'Fine strain into chilled coupe glass'
],
ingredients: [
{
ingredient: 'White rum',
amount: {
quantity: 2,
unit: 'oz'
}
},
{
ingredient: 'Lime juice',
amount: {
quantity: 0.75,
unit: 'oz'
}
},
{
ingredient: 'Simple syrup',
amount: {
quantity: 0.75,
unit: 'oz'
}
}
]
};
const whiskeySour = {
name: 'Whiskey Sour',
description:
'Classic pre-Prohibition cocktail that gets a bad rep but when made well is excellent.',
instructions: [
'Put all ingredients into shaker tin without ice',
'Shake hard for 2 seconds',
'Add ice and shake all ingredients for 10 seconds',
'Fine strain into chilled glass, either neat or over fresh ice.'
],
ingredients: [
{
ingredient: 'Whiskey',
amount: {
quantity: 2,
unit: 'oz'
}
},
{
ingredient: 'Lemon juice',
amount: {
quantity: 0.75,
unit: 'oz'
}
},
{
ingredient: 'Simple syrup',
amount: {
quantity: 0.75,
unit: 'oz'
}
},
{
ingredient: 'Egg white',
amount: {
quantity: 1
}
},
{
ingredient: 'Angostura bitters (Optional)',
amount: {
quantity: 1,
unit: 'dash'
}
},
{
ingredient: 'Lemon peel (Optional)',
amount: {
quantity: 1,
unit: 'for garnish'
}
}
]
};
const marg = {
name: 'Margarita',
description: 'The name means "Daisy" in Spanish.',
instructions: [
'Put all ingredients into shaker tin',
'Shake ingredients with ice for 10 seconds',
'Strain into glass over fresh ice or serve neat'
],
ingredients: [
{
ingredient: 'Tequila',
amount: {
quantity: 2,
unit: 'oz'
}
},
{
ingredient: 'Cointreau',
amount: {
quantity: 1,
unit: 'oz'
}
},
{
ingredient: 'Lime juice',
amount: {
quantity: 0.5,
unit: 'oz'
}
},
{
ingredient: 'Simple syrup',
amount: {
quantity: 0.5,
unit: 'oz'
}
},
{
ingredient: 'Salt rim',
amount: {
quantity: 1,
unit: 'for garnish'
}
},
{
ingredient: 'Lime wheel (Optional)',
amount: {
quantity: 1,
unit: 'for garnish'
}
}
]
};
module.exports.oldFashioned = oldFashioned;
module.exports.tomCollins = tommyC;
module.exports.list = [oldFashioned, tommyC];
module.exports.populate = [oldFashioned, tommyC, daiquiri, whiskeySour, marg];