UNPKG

node-password-generator

Version:

A simple lightweight npm library for password generator. It allows you to create random unqiue password on the fly.

7 lines (6 loc) 179 B
/** * @param {string} characterList * @param {number} length * @returns string */ export default function passwordRandomizer(characterList: string, length: number): string;