mirror of
https://github.com/gchq/CyberChef.git
synced 2024-11-16 00:48:31 +01:00
54 lines
1.2 KiB
JavaScript
54 lines
1.2 KiB
JavaScript
/**
|
|
* @author n1474335 [n1474335@gmail.com]
|
|
* @copyright Crown Copyright 2016
|
|
* @license Apache-2.0
|
|
*/
|
|
|
|
import Operation from "../Operation";
|
|
import OperationError from "../errors/OperationError";
|
|
|
|
/**
|
|
* To Base operation
|
|
*/
|
|
class ToBase extends Operation {
|
|
|
|
/**
|
|
* ToBase constructor
|
|
*/
|
|
constructor() {
|
|
super();
|
|
|
|
this.name = "To Base";
|
|
this.module = "Default";
|
|
this.description = "Converts a decimal number to a given numerical base.";
|
|
this.infoURL = "https://wikipedia.org/wiki/Radix";
|
|
this.inputType = "BigNumber";
|
|
this.outputType = "string";
|
|
this.args = [
|
|
{
|
|
"name": "Radix",
|
|
"type": "number",
|
|
"value": 36
|
|
}
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param {BigNumber} input
|
|
* @param {Object[]} args
|
|
* @returns {string}
|
|
*/
|
|
run(input, args) {
|
|
if (!input) {
|
|
throw new OperationError("Error: Input must be a number");
|
|
}
|
|
const radix = args[0];
|
|
if (radix < 2 || radix > 36) {
|
|
throw new OperationError("Error: Radix argument must be between 2 and 36");
|
|
}
|
|
return input.toString(radix);
|
|
}
|
|
|
|
}
|
|
|
|
export default ToBase;
|