Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Chrunos
/
load
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
2f527a4
load
/
api
/
src
/
processing
/
service-alias.js
rifnd
update
2f527a4
5 months ago
raw
Copy download link
history
blame
Safe
201 Bytes
const
friendlyNames = {
bsky
:
"bluesky"
,
}
export
const
friendlyServiceName
= (
service
) => {
if
(service
in
friendlyNames) {
return
friendlyNames[service];
}
return
service;
}