@dxtmisha/functional-basic
Version:
Core functional utility library for modern web development without framework dependencies
9 lines (8 loc) • 418 B
TypeScript
/**
* The method creates a string of length count, consisting of the characters value.
*
* Метод создает строку длиной count, состоящую из символов value.
* @param value character for filling/ символ для заполнения
* @param count length of the string/ длина строки
*/
export declare function strFill(value: string, count: number): string;