| 2 | type BadgePosition = "top-left" | "top-right" | "bottom-left" | "bottom-right"; |
| 3 | |
| 4 | export interface PetBadgeConfig { |
| 5 | variant: BadgeVariant; |
| 6 | position: BadgePosition; |
| 7 | } |
| 8 | |
| 9 | function hashSlug(slug: string): number { |
| 10 | let h = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected