mirror of
https://github.com/invoke-ai/InvokeAI.git
synced 2026-02-02 23:35:14 -05:00
6 lines
148 B
TypeScript
6 lines
148 B
TypeScript
const randomInt = (min: number, max: number): number => {
|
|
return Math.floor(Math.random() * (max - min + 1) + min);
|
|
};
|
|
|
|
export default randomInt;
|