mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 04:27:59 +00:00
21 lines
475 B
JavaScript
21 lines
475 B
JavaScript
import { hexToBn } from './toBn.js';
|
|
/**
|
|
* @name hexToNumber
|
|
* @summary Creates a Number value from a Buffer object.
|
|
* @description
|
|
* `null` inputs returns an NaN result, `hex` values return the actual value as a `Number`.
|
|
* @example
|
|
* <BR>
|
|
*
|
|
* ```javascript
|
|
* import { hexToNumber } from '@pezkuwi/util';
|
|
*
|
|
* hexToNumber('0x1234'); // => 0x1234
|
|
* ```
|
|
*/
|
|
export function hexToNumber(value) {
|
|
return value
|
|
? hexToBn(value).toNumber()
|
|
: NaN;
|
|
}
|