(min = 0, max = 255)
| 236 | |
| 237 | /** @description: 生成随机颜色 */ |
| 238 | export const randomColor = (min = 0, max = 255) => { |
| 239 | // 生成三个介于 0 到 255 之间的随机数作为 RGB 的值 |
| 240 | const r = random(min, max); |
| 241 | const g = random(min, max); |
| 242 | const b = random(min, max); |
| 243 | return `rgb(${r},${g},${b})`; |
| 244 | }; |
| 245 | |
| 246 | /** @description: 验证码字符 */ |
| 247 | export const codeChars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; |
no outgoing calls
no test coverage detected