Files
ZYZ/game-server/app/util/util.ts
2020-09-14 15:38:04 +08:00

10 lines
298 B
TypeScript

export function genCode(len) {
const chars = '123456789ABCDEFGHJKLMNPQRSTWXYZabcdefghijklmnopqrstuvwxyz';
const charArr = chars.split('');
let code = '';
for (let i = 0; i < len; i++) {
code += charArr[Math.floor(Math.random() * charArr.length)];
}
return code;
}