mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-07-25 04:45:45 +00:00
chore: update to version 14.0.11 and align website URLs
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import { hexFixLength } from '../hex/fixLength.js';
|
||||
/**
|
||||
* @name numberToHex
|
||||
* @summary Creates a hex value from a number.
|
||||
* @description
|
||||
* `null`/`undefined`/`NaN` inputs returns an empty `0x` result. `number` input values return the actual bytes value converted to a `hex`. With `bitLength` set, it converts the number to the equivalent size.
|
||||
* @example
|
||||
* <BR>
|
||||
*
|
||||
* ```javascript
|
||||
* import { numberToHex } from '@pezkuwi/util';
|
||||
*
|
||||
* numberToHex(0x1234); // => '0x1234'
|
||||
* numberToHex(0x1234, 32); // => 0x00001234
|
||||
* ```
|
||||
*/
|
||||
export function numberToHex(value, bitLength = -1) {
|
||||
const hex = (!value || Number.isNaN(value) ? 0 : value).toString(16);
|
||||
return hexFixLength(hex.length % 2 ? `0${hex}` : hex, bitLength, true);
|
||||
}
|
||||
Reference in New Issue
Block a user