From 60a790a6a88be9c4fdd7a616771fc235395682f5 Mon Sep 17 00:00:00 2001 From: TimMikeladze Date: Thu, 10 Aug 2023 12:07:45 -0700 Subject: [PATCH] fix: remove unused export --- README.md | 7 ------- src/index.ts | 2 -- 2 files changed, 9 deletions(-) diff --git a/README.md b/README.md index d498da8..37257ca 100644 --- a/README.md +++ b/README.md @@ -137,7 +137,6 @@ await spaceSlug([], { - [verb](#gear-verb) - [animal](#gear-animal) - [cosmos](#gear-cosmos) -- [starwars](#gear-starwars) ### :gear: defaultWords @@ -199,12 +198,6 @@ await spaceSlug([], { | ---------- | ---------- | | `cosmos` | `(count?: number, _words?: string[]) => (options: SpaceSlugOptions) => Set` | -### :gear: starwars - -| Constant | Type | -| ---------- | ---------- | -| `starwars` | `(count?: number, _words?: string[]) => (options: SpaceSlugOptions) => Set` | - diff --git a/src/index.ts b/src/index.ts index 120aece..4978ca5 100644 --- a/src/index.ts +++ b/src/index.ts @@ -109,8 +109,6 @@ export const animal = word('animals'); export const cosmos = word('cosmos'); -export const starwars = word('starwars'); - // eslint-disable-next-line @typescript-eslint/no-unused-vars export const digits = (count?: number) => (options: SpaceSlugOptions) => { const set = new Set();