mirror of
https://github.com/gchq/CyberChef
synced 2024-12-27 04:53:16 +00:00
Update descriptions to explain context awareness
This commit is contained in:
parent
116c0680a2
commit
98bc68c2bf
1 changed files with 6 additions and 0 deletions
|
@ -3256,6 +3256,8 @@ const OperationConfig = {
|
||||||
"Snake case is all lower case with underscores as word boundaries.",
|
"Snake case is all lower case with underscores as word boundaries.",
|
||||||
"<br><br>",
|
"<br><br>",
|
||||||
"e.g. this_is_snake_case",
|
"e.g. this_is_snake_case",
|
||||||
|
"<br><br>",
|
||||||
|
"'Attempt to be context aware' will make the operation attempt to nicely transform variable and function names.",
|
||||||
].join("\n"),
|
].join("\n"),
|
||||||
run: Code.runToSnakeCase,
|
run: Code.runToSnakeCase,
|
||||||
inputType: "string",
|
inputType: "string",
|
||||||
|
@ -3275,6 +3277,8 @@ const OperationConfig = {
|
||||||
"Camel case is all lower case except letters after word boundaries which are uppercase.",
|
"Camel case is all lower case except letters after word boundaries which are uppercase.",
|
||||||
"<br><br>",
|
"<br><br>",
|
||||||
"e.g. thisIsCamelCase",
|
"e.g. thisIsCamelCase",
|
||||||
|
"<br><br>",
|
||||||
|
"'Attempt to be context aware' will make the operation attempt to nicely transform variable and function names.",
|
||||||
].join("\n"),
|
].join("\n"),
|
||||||
run: Code.runToCamelCase,
|
run: Code.runToCamelCase,
|
||||||
inputType: "string",
|
inputType: "string",
|
||||||
|
@ -3294,6 +3298,8 @@ const OperationConfig = {
|
||||||
"Kebab case is all lower case with dashes as word boundaries.",
|
"Kebab case is all lower case with dashes as word boundaries.",
|
||||||
"<br><br>",
|
"<br><br>",
|
||||||
"e.g. this-is-kebab-case",
|
"e.g. this-is-kebab-case",
|
||||||
|
"<br><br>",
|
||||||
|
"'Attempt to be context aware' will make the operation attempt to nicely transform variable and function names.",
|
||||||
].join("\n"),
|
].join("\n"),
|
||||||
run: Code.runToKebabCase,
|
run: Code.runToKebabCase,
|
||||||
inputType: "string",
|
inputType: "string",
|
||||||
|
|
Loading…
Reference in a new issue