misc changes
Signed-off-by: Naman Sood <mail@nsood.in>
This commit is contained in:
parent
294e147d39
commit
004132e966
3 changed files with 12 additions and 14 deletions
10
js/script.js
10
js/script.js
|
@ -116,12 +116,10 @@ const sequences = [
|
|||
'YELL',
|
||||
'BLUE',
|
||||
'SAVE'
|
||||
].map(seq => {
|
||||
return {
|
||||
word: seq,
|
||||
combo: seq.split('').map(c => 'Key' + c)
|
||||
}
|
||||
});
|
||||
].map(seq => ({
|
||||
word: seq,
|
||||
combo: seq.split('').map(c => 'Key' + c)
|
||||
}));
|
||||
|
||||
const lastFourKeys = [];
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue