File size: 109 Bytes
3df1e9f |
1 2 3 4 |
export function compareStr(a: string, b: string) {
return a.toLowerCase().localeCompare(b.toLowerCase());
}
|
3df1e9f |
1 2 3 4 |
export function compareStr(a: string, b: string) {
return a.toLowerCase().localeCompare(b.toLowerCase());
}
|