mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-10 08:15:00 -04:00
Added word separator code to Morse Code ops.
This commit is contained in:
parent
a80c8ae0c0
commit
c72e3b1134
2 changed files with 4 additions and 2 deletions
|
@ -147,7 +147,8 @@ const MORSE_TABLE = {
|
||||||
"=": "<dash><dot><dot><dot><dash>",
|
"=": "<dash><dot><dot><dot><dash>",
|
||||||
"&": "<dot><dash><dot><dot><dot>",
|
"&": "<dot><dash><dot><dot><dot>",
|
||||||
"_": "<dot><dot><dash><dash><dot><dash>",
|
"_": "<dot><dot><dash><dash><dot><dash>",
|
||||||
"$": "<dot><dot><dot><dash><dot><dot><dash>"
|
"$": "<dot><dot><dot><dash><dot><dot><dash>",
|
||||||
|
" ": "<dot><dot><dot><dot><dot><dot><dot>"
|
||||||
};
|
};
|
||||||
|
|
||||||
export default FromMorseCode;
|
export default FromMorseCode;
|
||||||
|
|
|
@ -148,7 +148,8 @@ const MORSE_TABLE = {
|
||||||
"=": "<dash><dot><dot><dot><dash>",
|
"=": "<dash><dot><dot><dot><dash>",
|
||||||
"&": "<dot><dash><dot><dot><dot>",
|
"&": "<dot><dash><dot><dot><dot>",
|
||||||
"_": "<dot><dot><dash><dash><dot><dash>",
|
"_": "<dot><dot><dash><dash><dot><dash>",
|
||||||
"$": "<dot><dot><dot><dash><dot><dot><dash>"
|
"$": "<dot><dot><dot><dash><dot><dot><dash>",
|
||||||
|
" ": "<dot><dot><dot><dot><dot><dot><dot>"
|
||||||
};
|
};
|
||||||
|
|
||||||
export default ToMorseCode;
|
export default ToMorseCode;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue