https://github.com/pacexy/niz
Filter out available npm names.
https://github.com/pacexy/niz
Last synced: 26 days ago
JSON representation
Filter out available npm names.
- Host: GitHub
- URL: https://github.com/pacexy/niz
- Owner: pacexy
- License: mit
- Created: 2020-10-18T02:46:03.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-10-19T17:51:44.000Z (over 5 years ago)
- Last Synced: 2026-02-10T10:14:22.748Z (4 months ago)
- Language: TypeScript
- Homepage:
- Size: 39.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# niz
Filter out available npm names through some restrictions.
### Usage
```typescript
const availableNames: string[] = niz(options: Options)
```
### Options
```typescript
interface Options {
length: number
charset?: string[]
filter?: Function
inject?: Function
}
```