UNPKG

@plteam/chat-ui

Version:

CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript

10 lines (9 loc) 306 B
export const randomInt = (min, max) => { if (min > max) { throw new Error("The minimum value must be less than or equal to the maximum value."); } return Math.floor(Math.random() * (max - min + 1)) + min; }; export const randomId = () => { return randomInt(1, 1000000); };