mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 06:55:08 -04:00
chore: fix class name for analyse UUID operation
This commit is contained in:
parent
457d28fc55
commit
de5b03f854
1 changed files with 6 additions and 5 deletions
|
@ -4,17 +4,18 @@
|
|||
* @license Apache-2.0
|
||||
*/
|
||||
|
||||
import Operation from "../Operation.mjs";
|
||||
import * as uuid from "uuid";
|
||||
|
||||
import Operation from "../Operation.mjs";
|
||||
import OperationError from "../errors/OperationError.mjs";
|
||||
|
||||
/**
|
||||
* Analyse hash operation
|
||||
* Analyse UUID operation
|
||||
*/
|
||||
class AnalyseHash extends Operation {
|
||||
class AnalyseUUID extends Operation {
|
||||
|
||||
/**
|
||||
* AnalyseHash constructor
|
||||
* AnalyseUUID constructor
|
||||
*/
|
||||
constructor() {
|
||||
super();
|
||||
|
@ -44,4 +45,4 @@ class AnalyseHash extends Operation {
|
|||
|
||||
}
|
||||
|
||||
export default AnalyseHash;
|
||||
export default AnalyseUUID;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue