Thomas G. Lopes
some updates
3df1e9f
raw
history blame contribute delete
109 Bytes
export function compareStr(a: string, b: string) {
return a.toLowerCase().localeCompare(b.toLowerCase());
}