Function: hexToDecimalString()
hexToDecimalString(
hex):string
Defined in: src/utils/num.ts:139
Convert hexadecimal string to decimal string
Parameters
hex
string
hex-string to convert
Returns
string
converted number in decimal string format
Example
hexToDecimalString('64'); // '100'
hexToDecimalString('c8'); // '200'