UNPKG

nammaniru_common_service

Version:

The service will contain all the functionality which is common for both shop and customer

6 lines 225 B
export function GenerateOTP(): String { console.log("Inside OTPGenerator"); const OTP: Number = Math.floor(Math.random() * (9999 - 999) + 999); console.log("Generated OTP:", OTP); return OTP.toString(); }