mirror of
https://github.com/gchq/CyberChef
synced 2025-12-15 15:53:30 +00:00
Removed unnecessary whitespace
This commit is contained in:
@@ -13,7 +13,7 @@ import Utils from "./Utils.js";
|
||||
*/
|
||||
const Dish = function(value, type) {
|
||||
this.value = value || typeof value == "string" ? value : null;
|
||||
this.type = type || Dish.BYTE_ARRAY;
|
||||
this.type = type || Dish.BYTE_ARRAY;
|
||||
};
|
||||
|
||||
|
||||
@@ -101,7 +101,7 @@ Dish.enumLookup = function(typeEnum) {
|
||||
*/
|
||||
Dish.prototype.set = function(value, type) {
|
||||
this.value = value;
|
||||
this.type = type;
|
||||
this.type = type;
|
||||
|
||||
if (!this.valid()) {
|
||||
const sample = Utils.truncate(JSON.stringify(this.value), 13);
|
||||
|
||||
Reference in New Issue
Block a user