mirror of
https://github.com/jumpserver/lina.git
synced 2026-01-16 23:07:11 +00:00
10 lines
325 B
JavaScript
10 lines
325 B
JavaScript
export function randomString(length) {
|
|
const characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'
|
|
let result = ''
|
|
const charactersLength = characters.length
|
|
for (let i = 0; i < length; i++) {
|
|
result += characters.charAt(Math.floor(Math.random() * charactersLength))
|
|
}
|
|
return result
|
|
}
|