mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-02 22:21:01 +01:00
Removed src/test.mjs
This commit is contained in:
parent
745d21d1bc
commit
2393eac218
20
src/test.mjs
20
src/test.mjs
@ -1,20 +0,0 @@
|
||||
import Dish from "./core/Dish";
|
||||
|
||||
const a = new Dish();
|
||||
const i = "original";
|
||||
a.set(i, Dish.STRING);
|
||||
|
||||
console.log(a);
|
||||
|
||||
const b = a.clone();
|
||||
|
||||
console.log(b);
|
||||
|
||||
console.log("changing a");
|
||||
|
||||
a.value.toUpperCase();
|
||||
// const c = new Uint8Array([1,2,3,4,5,6,7,8,9,0]).buffer;
|
||||
// a.set(c, Dish.ARRAY_BUFFER);
|
||||
|
||||
console.log(a);
|
||||
console.log(b);
|
Loading…
Reference in New Issue
Block a user