@polkadot/util
Version:
A collection of useful utilities for @polkadot
13 lines (12 loc) • 449 B
TypeScript
/**
* @summary Internal utilities to create and test for hex values
*/
export { hexAddPrefix } from './addPrefix';
export { hexFixLength } from './fixLength';
export { hexHasPrefix } from './hasPrefix';
export { hexStripPrefix } from './stripPrefix';
export { hexToBigInt } from './toBigInt';
export { hexToBn } from './toBn';
export { hexToNumber } from './toNumber';
export { hexToString } from './toString';
export { hexToU8a } from './toU8a';