UNPKG

223 BTypeScriptView Raw
1export = repeating;
2
3/**
4 * Repeat a string - fast
5 *
6 * @param count Times the 'string' should be repeated.
7 * @param str String to repeat. Default: ' '
8 */
9declare function repeating(count: number, str?: string): string;