UNPKG

secure-otps

Version:

A cryptographically secure One Time Password(OTP) generator

8 lines (7 loc) 156 B
export declare class SecureOtps { private readonly length; private min; private max; constructor(length: number); generate(): string; }