hejianhao
2025-01-08 069a86df1d005c98efd8121d69d64ae2bd8069e6
1
2
3
4
5
6
7
8
9
10
 
 
export function generateVerificationCode() {
  const characters = '123456789abcdefghijkmnpqrstuvwxyABCDEFGHJKLMNPQRSTUVWXY';
  let code = '';
  for (let i = 0; i < 4; i++) {
    code += characters.charAt(Math.floor(Math.random() * characters.length));
  }
  return code;
}