@polkadot/util
Version:
A collection of useful utilities for @polkadot
9 lines (8 loc) • 344 B
TypeScript
/**
* @summary Utility methods to convert to work with `string` values
*/
export { stringCamelCase, stringPascalCase } from './camelCase.js';
export { stringLowerFirst, stringUpperFirst } from './lowerFirst.js';
export { stringShorten } from './shorten.js';
export { stringToHex } from './toHex.js';
export { stringToU8a } from './toU8a.js';