mirror of
https://github.com/ctwj/urldb.git
synced 2025-11-25 03:15:04 +08:00
7 lines
218 B
TypeScript
7 lines
218 B
TypeScript
export function createRandomColor() {
|
|
return '#' + Math.floor(Math.random() * 16777215).toString(16)
|
|
}
|
|
|
|
export function getRandomItemInArray(array: any[]) {
|
|
return array[Math.floor(Math.random() * array.length)]
|
|
}
|