1 2 3 4 5 6 7 8 9 10
import {ONE_FIVE_TIMES_ZERO, NINE_FIVE_TIMES_ZERO} from '../constants/numbers'; const generateOTP = () => { const otp = Math.floor( ONE_FIVE_TIMES_ZERO + Math.random() * NINE_FIVE_TIMES_ZERO ); return otp; }; export default generateOTP;