Files
micro-service-api/exthernal-login-api/src/utils/otp.js

4 lines
108 B
JavaScript
Raw Normal View History

2025-11-11 12:36:06 +07:00
export function generateOTP(length = 6) {
return Math.floor(100000 + Math.random() * 900000).toString()
}