UNPKG

@dxtmisha/functional-basic

Version:

Core functional utility library for modern web development without framework dependencies

9 lines (8 loc) 323 B
/** * Generate a random integer. * * Генерирует случайное число. * @param min the lowest value to return/ наименьшее значение * @param max the highest value to return/ наибольшее значение */ export declare function random(min: number, max: number): number;