Format and automatically fix linted code.

This commit is contained in:
Paul
2021-07-10 15:57:29 +01:00
parent 392cb23541
commit 7586b365fe
87 changed files with 789 additions and 563 deletions

View File

@@ -1,6 +1,6 @@
export const emojiDictionary = {
"100": "💯",
"1234": "🔢",
100: "💯",
1234: "🔢",
grinning: "😀",
smiley: "😃",
smile: "😄",

View File

@@ -19,8 +19,8 @@ export const SOUNDS_ARRAY: Sounds[] = [
];
export function playSound(sound: Sounds) {
let file = SoundMap[sound];
let el = new Audio(file);
const file = SoundMap[sound];
const el = new Audio(file);
try {
el.play();
} catch (err) {