Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
huggingchat/chat-ui
kokofixcomputers
/
chat-ui
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
chat-ui
/
src
/
lib
/
utils
/
trimPrefix.ts
kokofixcomputers
Duplicate from huggingchat/chat-ui
8b7ec8f
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
150 Bytes
export
function
trimPrefix
(
input:
string
, prefix:
string
) {
if
(input.
startsWith
(prefix)) {
return
input.
slice
(prefix.
length
);
}
return
input;
}