misc-utils-of-mine-generic
Version:
Miscellaneous utilities for JavaScript/TypeScript that I often use
6 lines (5 loc) • 360 B
TypeScript
export declare function shorter(text: string, much?: number): string;
export declare function removeWhites(s: string, replaceWith?: string): string;
export declare function removeEmptyLines(c: string, newLine?: string): string;
export declare function trimRightLines(s: string, newLine?: string): string;
export declare function capitalize(s: string): string;