Fix '-' code

This commit is contained in:
Nathan McRae 2024-05-08 19:37:45 -07:00
parent 926c748eea
commit c19c873b02

View File

@ -40,7 +40,7 @@ const MORSE_MAP = {
'!': '-.-.--',
'=': '-...-',
'+': '.-.-.',
'-': '-...-'
'-': '-....-'
};
const REVERSE_MORSE_MAP = function() {