mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-22 15:56:16 -04:00
'From Base' operation now supports numbers with fractional parts.
This commit is contained in:
parent
3788a9161a
commit
706423462d
2 changed files with 20 additions and 2 deletions
|
@ -13,7 +13,13 @@ const CyberChef = module.exports = {
|
|||
|
||||
bake: function(input, recipeConfig) {
|
||||
this.chef = new Chef();
|
||||
return this.chef.bake(input, recipeConfig, {}, 0, false);
|
||||
return this.chef.bake(
|
||||
input,
|
||||
recipeConfig,
|
||||
{},
|
||||
0,
|
||||
false
|
||||
);
|
||||
}
|
||||
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue