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
- Host: GitHub
- URL: https://github.com/pacexy/enumerate-strings
- Owner: pacexy
- License: mit
- Created: 2020-10-18T11:12:56.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-10-19T17:48:10.000Z (over 5 years ago)
- Last Synced: 2025-02-18T02:12:25.821Z (over 1 year ago)
- Language: TypeScript
- Size: 23.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
}
```