Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
huggingface
/
inference-playground
like
137
Running
App
Files
Files
Community
5
Fetching metadata from the HF Docker repository...
main
inference-playground
/
src
/
lib
/
utils
/
compare.ts
Thomas G. Lopes
some updates
3df1e9f
18 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
109 Bytes
export
function
compareStr
(
a:
string
, b:
string
) {
return
a.
toLowerCase
().
localeCompare
(b.
toLowerCase
());
}