mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-30 18:57:57 +00:00
chore: update to version 14.0.11 and align website URLs
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.hexToNumber = hexToNumber;
|
||||
const toBn_js_1 = require("./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
|
||||
* ```
|
||||
*/
|
||||
function hexToNumber(value) {
|
||||
return value
|
||||
? (0, toBn_js_1.hexToBn)(value).toNumber()
|
||||
: NaN;
|
||||
}
|
||||
Reference in New Issue
Block a user