fauton
Version:
A library to test any finite automaton with arbitrary alphabets
5 lines (4 loc) • 344 B
TypeScript
export declare class GenerateString {
static generateAllCombosWithinLength(alphabet: string[], maxLength: number, startLength: number, cb?: (generatedString: string) => void): string[];
static generateRandomUnique(total: number, alphabet: string[], minLength: number, maxLength: number, initialInputStrings?: string[]): string[];
}