Created
July 18, 2025 17:22
-
-
Save trikitrok/52d115fde4d55e28642b7a5b8de4bce0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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