Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Chrunos
/
load
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a093333
load
/
api
/
src
/
processing
/
service-alias.js
rifnd
update
2f527a4
6 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;
}