mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 07:16:17 -04:00
Fix casing for Morse code operations + description
This commit is contained in:
parent
230ba5ff67
commit
9bf0d66b88
2 changed files with 6 additions and 6 deletions
|
@ -85,8 +85,8 @@ var Categories = [
|
|||
"Substitute",
|
||||
"Derive PBKDF2 key",
|
||||
"Derive EVP key",
|
||||
"To Morse Code",
|
||||
"From Morse Code",
|
||||
"To Morse code",
|
||||
"From Morse code",
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
|
@ -2953,8 +2953,8 @@ var OperationConfig = {
|
|||
}
|
||||
]
|
||||
},
|
||||
"To Morse Code": {
|
||||
description: "Translates alphanumeric characters into International Morse Code.<br><br>Ignores non-Morse characters.<br><br>e.g. SOS becomes ... --- ...",
|
||||
"To Morse code": {
|
||||
description: "Translates alphanumeric characters into International Morse code.<br><br>Ignores non-Morse characters.<br><br>e.g. SOS becomes ... --- ...",
|
||||
run: MorseCode.translateTo,
|
||||
inputType: "string",
|
||||
outputType: "string",
|
||||
|
@ -2976,8 +2976,8 @@ var OperationConfig = {
|
|||
}
|
||||
]
|
||||
},
|
||||
"From Morse Code": {
|
||||
description: "Translates Morse Code into (upper case) alphanumeric characters.",
|
||||
"From Morse code": {
|
||||
description: "Translates Morse code into (upper case) alphanumeric characters.",
|
||||
run: MorseCode.translateFrom,
|
||||
inputType: "string",
|
||||
outputType: "string",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue