@polkadot/util
Version:
A collection of useful utilities for @polkadot
14 lines (13 loc) • 515 B
TypeScript
import type { AnyString } from '../types.js';
export declare const CC_TO_UP: string[];
export declare const CC_TO_LO: string[];
/**
* @name stringCamelCase
* @summary Convert a dash/dot/underscore/space separated Ascii string/String to camelCase
*/
export declare const stringCamelCase: (value: AnyString) => string;
/**
* @name stringPascalCase
* @summary Convert a dash/dot/underscore/space separated Ascii string/String to PascalCase
*/
export declare const stringPascalCase: (value: AnyString) => string;