mirror of
https://github.com/gchq/CyberChef.git
synced 2025-06-16 19:25:19 -04:00
Get All Casings -> Get All Cases
make this recipe easier to search and consistent with case ops
This commit is contained in:
parent
c57556f49f
commit
4a68bf5268
4 changed files with 10 additions and 10 deletions
|
@ -299,7 +299,7 @@
|
|||
"From Case Insensitive Regex",
|
||||
"Add line numbers",
|
||||
"Remove line numbers",
|
||||
"Get All Casings",
|
||||
"Get All Cases",
|
||||
"To Table",
|
||||
"Reverse",
|
||||
"Sort",
|
||||
|
|
|
@ -9,15 +9,15 @@ import Operation from "../Operation.mjs";
|
|||
/**
|
||||
* Permutate String operation
|
||||
*/
|
||||
class GetAllCasings extends Operation {
|
||||
class GetAllCases extends Operation {
|
||||
|
||||
/**
|
||||
* GetAllCasings constructor
|
||||
* GetAllCases constructor
|
||||
*/
|
||||
constructor() {
|
||||
super();
|
||||
|
||||
this.name = "Get All Casings";
|
||||
this.name = "Get All Cases";
|
||||
this.module = "Default";
|
||||
this.description = "Outputs all possible casing variations of a string.";
|
||||
this.infoURL = "";
|
||||
|
@ -50,4 +50,4 @@ class GetAllCasings extends Operation {
|
|||
}
|
||||
}
|
||||
|
||||
export default GetAllCasings;
|
||||
export default GetAllCases;
|
Loading…
Add table
Add a link
Reference in a new issue