2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-05 23:53:27 +00:00

Fixed linting issue

This commit is contained in:
mshwed
2019-06-27 14:11:26 -04:00
parent 1b161f997b
commit b0b6de116d

View File

@@ -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));