UNPKG

rollun-ts-utils

Version:
10 lines (9 loc) 294 B
export declare function camelCaseToWords(str: string): string; export declare function camelCaseToSnake(str: string): string; /** * pad string with symbol * @param n * @param width * @param symbol */ export declare function pad(n: string | number, width: number, symbol?: string): string;