2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-10 13:23:25 +00:00

Merge branch 'init-dish' of https://github.com/d98762625/CyberChef into d98762625-init-dish

This commit is contained in:
n1474335
2019-04-12 16:24:23 +01:00

View File

@@ -21,8 +21,8 @@ class Dish {
* @param {Dish} [dish=null] - A dish to clone * @param {Dish} [dish=null] - A dish to clone
*/ */
constructor(dish=null) { constructor(dish=null) {
this.value = []; this.value = new ArrayBuffer(0);
this.type = Dish.BYTE_ARRAY; this.type = Dish.ARRAY_BUFFER;
if (dish && if (dish &&
dish.hasOwnProperty("value") && dish.hasOwnProperty("value") &&