mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-02 22:21:01 +01:00
30 lines
557 B
JavaScript
30 lines
557 B
JavaScript
|
/**
|
||
|
* Tests to ensure that a consuming app can use CJS require
|
||
|
*
|
||
|
* @author d98762625 [d98762625@gmail.com]
|
||
|
* @copyright Crown Copyright 2019
|
||
|
* @license Apache-2.0
|
||
|
*/
|
||
|
|
||
|
const chef = require("cyberchef");
|
||
|
const assert = require("assert");
|
||
|
|
||
|
const d = chef.bake("Testing, 1 2 3", [
|
||
|
chef.toHex,
|
||
|
chef.reverse,
|
||
|
{
|
||
|
op: chef.unique,
|
||
|
args: {
|
||
|
delimiter: "Space",
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
op: chef.multiply,
|
||
|
args: {
|
||
|
delimiter: "Space",
|
||
|
}
|
||
|
}
|
||
|
]);
|
||
|
|
||
|
assert.equal(d.value, "630957449041920");
|