UNPKG

node-password-generator

Version:

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

12 lines (11 loc) 309 B
import { Options } from './lib/options'; /** * @param {} {uppercase * @param {} lowercase * @param {} numbers * @param {} symbols * @param {} length * @param {Options} } * @returns string */ export default function generate({ uppercase, lowercase, numbers, symbols, length, }: Options): string;