mirror of
https://github.com/gchq/CyberChef
synced 2025-12-25 04:33:43 +00:00
'From Base' operation now supports numbers with fractional parts.
This commit is contained in:
@@ -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
|
||||
);
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user