mirror of
https://github.com/gchq/CyberChef
synced 2025-12-05 23:53:27 +00:00
chore: fix class name for analyse UUID operation
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user