UNPKG

dastal

Version:

Data Structures & Algorithms implementations

5 lines (4 loc) 127 B
/** * Pad a string from both sides. */ export declare function pad(str: string, maxLen: number, fillString: string): string;