mirror of
https://github.com/gchq/CyberChef
synced 2024-11-15 09:07:06 +00:00
Fixed linting issue
This commit is contained in:
parent
1b161f997b
commit
b0b6de116d
1 changed files with 1 additions and 1 deletions
|
@ -383,7 +383,7 @@ class Entropy extends Operation {
|
|||
run(input, args) {
|
||||
const visualizationType = args[0];
|
||||
|
||||
if (visualizationType === 'Shannon') {
|
||||
if (visualizationType === "Shannon") {
|
||||
return this.createShannonEntropyVisualization(this.calculateShannonEntropy(input));
|
||||
} else if (visualizationType === "Histogram (Bar)") {
|
||||
return this.createByteFrequencyBarHistogram(this.calculateByteFrequency(input));
|
||||
|
|
Loading…
Reference in a new issue