mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 07:16:17 -04:00
Adds basic BigNumber type support
Fixes `To Base` & `From Base` issues as reported on twitter
This commit is contained in:
parent
0ba28dc891
commit
c241d2f90b
5 changed files with 47 additions and 932 deletions
|
@ -806,7 +806,7 @@ const OperationConfig = {
|
|||
module: "Default",
|
||||
description: "Converts a number to decimal from a given numerical base.",
|
||||
inputType: "string",
|
||||
outputType: "number",
|
||||
outputType: "BigNumber",
|
||||
args: [
|
||||
{
|
||||
name: "Radix",
|
||||
|
@ -818,7 +818,7 @@ const OperationConfig = {
|
|||
"To Base": {
|
||||
module: "Default",
|
||||
description: "Converts a decimal number to a given numerical base.",
|
||||
inputType: "number",
|
||||
inputType: "BigNumber",
|
||||
outputType: "string",
|
||||
args: [
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue