mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-22 07:46:16 -04:00
Resolved conflicts
This commit is contained in:
commit
e2161ec934
25 changed files with 811 additions and 208 deletions
|
@ -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;
|
||||
};
|
||||
|
||||
|
||||
|
@ -112,7 +112,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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue