mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-22 15:56:16 -04:00
68 lines
1.5 KiB
JavaScript
Executable file
68 lines
1.5 KiB
JavaScript
Executable file
import BigNumber from "bignumber.js";
|
|
|
|
/**
|
|
* Numerical base operations.
|
|
*
|
|
* @author n1474335 [n1474335@gmail.com]
|
|
* @copyright Crown Copyright 2016
|
|
* @license Apache-2.0
|
|
*
|
|
* @namespace
|
|
*/
|
|
const Base = {
|
|
|
|
/**
|
|
* @constant
|
|
* @default
|
|
*/
|
|
DEFAULT_RADIX: 36,
|
|
|
|
/**
|
|
* To Base operation.
|
|
*
|
|
* @param {BigNumber} input
|
|
* @param {Object[]} args
|
|
* @returns {string}
|
|
*/
|
|
runTo: function(input, args) {
|
|
if (!input) {
|
|
throw ("Error: Input must be a number");
|
|
}
|
|
const radix = args[0] || Base.DEFAULT_RADIX;
|
|
if (radix < 2 || radix > 36) {
|
|
throw "Error: Radix argument must be between 2 and 36";
|
|
}
|
|
return input.toString(radix);
|
|
},
|
|
|
|
|
|
/**
|
|
* From Base operation.
|
|
*
|
|
* @param {string} input
|
|
* @param {Object[]} args
|
|
* @returns {BigNumber}
|
|
*/
|
|
runFrom: function(input, args) {
|
|
const radix = args[0] || Base.DEFAULT_RADIX;
|
|
if (radix < 2 || radix > 36) {
|
|
throw "Error: Radix argument must be between 2 and 36";
|
|
}
|
|
|
|
let number = input.replace(/\s/g, "").split("."),
|
|
result = new BigNumber(number[0], radix) || 0;
|
|
|
|
if (number.length === 1) return result;
|
|
|
|
// Fractional part
|
|
for (let i = 0; i < number[1].length; i++) {
|
|
const digit = new BigNumber(number[1][i], radix);
|
|
result += digit.div(Math.pow(radix, i+1));
|
|
}
|
|
|
|
return result;
|
|
},
|
|
|
|
};
|
|
|
|
export default Base;
|