UNPKG

reddit-style-username-generator

Version:

A utility for generating and storing unique username combinations in Redis. This package reads usernames from a file, generates combinations with specified colors and nouns, and stores them in a Redis set.

9 lines (7 loc) 167 B
type Style = 'lowerCase' | 'upperCase' | 'capital'; export interface Config { dictionaries: string[][]; separator?: string; length?: number; style?: Style; }