UNPKG

@n3okill/utils

Version:
8 lines (7 loc) 258 B
/** * Repeat a given string a number of times * @param str String that will be repeated * @param n Number of times to repeat the given string * @return The given string repeated n times */ export declare function repeat(str: string, n: number): string;