misc changes

Signed-off-by: Naman Sood <mail@nsood.in>
This commit is contained in:
Naman Sood 2023-03-09 18:55:45 -05:00
parent 294e147d39
commit 004132e966
3 changed files with 12 additions and 14 deletions

View file

@ -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 = [];