UNPKG

@dccs/react-autocomplete-mui

Version:
10 lines (9 loc) 191 B
export function stringCompare(a: string, b: string) { if (a === b) { return true; } if (a.toLowerCase().includes(b.toLowerCase())) { return true; } return false; }