19 lines
408 B
TypeScript
19 lines
408 B
TypeScript
import config from '../../../config/config';
|
|
|
|
export class OtpGenerator {
|
|
static generateOtp(): string {
|
|
if (config.byPassOTP) {
|
|
return '1234';
|
|
}
|
|
return Math.floor(1000 + Math.random() * 9000).toString();
|
|
}
|
|
}
|
|
export class OtpGeneratorSixDigit {
|
|
static generateOtp(): string {
|
|
if (config.byPassOTP) {
|
|
return '123456';
|
|
}
|
|
return Math.floor(100000 + Math.random() * 900000).toString();
|
|
}
|
|
}
|