Duplicated from huggingface/inference-playground
3df1e9f
1
2
3
4
export function compareStr(a: string, b: string) { return a.toLowerCase().localeCompare(b.toLowerCase()); }