An open API service indexing awesome lists of open source software.

https://github.com/pacexy/enumerate-strings

Enumerate strings that meet certain restrictions
https://github.com/pacexy/enumerate-strings

Last synced: over 1 year ago
JSON representation

Enumerate strings that meet certain restrictions

Awesome Lists containing this project

README

          

# enumerate-strings
Enumerate strings that meet certain restrictions

### Usage
```typescript
const strings: string[] = enumerateStrings(options: Options)
```

### Options
```typescript
interface Options {
length: number
charset?: string[]
filter?: (string: string) => boolean
}
```