UNPKG

otpiq

Version:

TypeScript client for the OTPiq SMS verification service

7 lines (6 loc) 252 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.generateRandomCode = generateRandomCode; function generateRandomCode(length = 6) { return Array.from({ length }, () => Math.floor(Math.random() * 10)).join(""); }