mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 14:56:19 -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
|
* @license Apache-2.0
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import Operation from "../Operation.mjs";
|
|
||||||
import * as uuid from "uuid";
|
import * as uuid from "uuid";
|
||||||
|
|
||||||
|
import Operation from "../Operation.mjs";
|
||||||
import OperationError from "../errors/OperationError.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() {
|
constructor() {
|
||||||
super();
|
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