Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
Duplicated from
huggingchat/chat-ui
BetterAPI
/
BetterChat
like
2
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
main
BetterChat
/
src
/
lib
/
utils
/
trimPrefix.ts
BetterAPI
Duplicate from huggingchat/chat-ui
1ef0413
about 3 years ago
Raw
Download with hf CLI
Copy download link
History
Blame
Contribute
Delete
Safe
150 Bytes
export
function
trimPrefix
(
input:
string
, prefix:
string
) {
if
(input.
startsWith
(prefix)) {
return
input.
slice
(prefix.
length
);
}
return
input;
}