UNPKG

@dxtmisha/functional-basic

Version:

Core functional utility library for modern web development without framework dependencies

9 lines (8 loc) 492 B
/** * The method creates an array of "count" elements with values equal to `value`. * * Метод создает массив из "count" элементов со значениями равными `value`. * @param value value to fill the array with/ значение, заполняющее массив * @param count the number of elements in that array/ число элементов этого массива */ export declare function arrFill<T>(value: T, count: number): T[];