(needle, haystack)
| 11 | } |
| 12 | |
| 13 | export function fuzzyMatchesWholeWord (needle, haystack) { |
| 14 | return matchesWholeWord ( needle.toLowerCase() , haystack.toLowerCase() ) |
| 15 | } |
| 16 | |
| 17 | export function eitherMatches (stringARaw, stringBRaw) { |
| 18 | // Make strings lowercase for more generous comparison |
no test coverage detected