mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 14:56:19 -04:00
Tidied Morse Code operations to match the project conventions.
This commit is contained in:
parent
718e1dc153
commit
8f69ee441e
7 changed files with 42 additions and 210 deletions
|
@ -2953,9 +2953,9 @@ 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 ... --- ...",
|
||||
run: MorseCode.translateTo,
|
||||
"To Morse Code": {
|
||||
description: "Translates alphanumeric characters into International Morse Code.<br><br>Ignores non-Morse characters.<br><br>e.g. <code>SOS</code> becomes <code>... --- ...</code>",
|
||||
run: MorseCode.runTo,
|
||||
inputType: "string",
|
||||
outputType: "string",
|
||||
args: [
|
||||
|
@ -2976,9 +2976,9 @@ var OperationConfig = {
|
|||
}
|
||||
]
|
||||
},
|
||||
"From Morse code": {
|
||||
description: "Translates Morse code into (upper case) alphanumeric characters.",
|
||||
run: MorseCode.translateFrom,
|
||||
"From Morse Code": {
|
||||
description: "Translates Morse Code into (upper case) alphanumeric characters.",
|
||||
run: MorseCode.runFrom,
|
||||
inputType: "string",
|
||||
outputType: "string",
|
||||
args: [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue