Thomas G. Lopes
some updates
3df1e9f
export function compareStr(a: string, b: string) {
return a.toLowerCase().localeCompare(b.toLowerCase());
}