mirror of
https://github.com/FranP-code/spend-ia.git
synced 2025-10-13 00:14:09 +00:00
7 lines
246 B
TypeScript
7 lines
246 B
TypeScript
export const capitalize = (str: string): string => str.charAt(0).toUpperCase() + str.slice(1);
|
|
|
|
export const getRandomItem = (array: any[]): any => {
|
|
const randomIndex = Math.floor(Math.random() * array.length);
|
|
return array[randomIndex];
|
|
};
|