Skip to content

Instantly share code, notes, and snippets.

@trikitrok
Created July 18, 2025 17:22
Show Gist options
  • Save trikitrok/52d115fde4d55e28642b7a5b8de4bce0 to your computer and use it in GitHub Desktop.
Save trikitrok/52d115fde4d55e28642b7a5b8de4bce0 to your computer and use it in GitHub Desktop.
export class CaseInsensitiveWordToKey implements WordToKey {
getKey(word: string): string {
return word.toLowerCase();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment