UNPKG

@vijay0405/js-number-converter

Version:

Convert big integer numbers, binary, decimal, hexadecimal

8 lines 223 B
module.exports = (inputValue, currBase) => { if (currBase === 16) { inputValue = '0x' + inputValue; } else if (currBase === 2) { inputValue = '0b' + inputValue; } return BigInt(inputValue); }