Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
huggingchat/chat-ui
alexkueck
/
HF_Chat_LI_last
like
0
Paused
App
Files
Files
Fetching metadata from the HF Docker repository...
main
HF_Chat_LI_last
/
src
/
lib
/
utils
/
trimPrefix.ts
Alexandra Kueck
Duplicate from huggingchat/chat-ui
12532f1
over 2 years ago
raw
Copy download link
history
blame
Safe
150 Bytes
export
function
trimPrefix
(
input:
string
, prefix:
string
) {
if
(input.
startsWith
(prefix)) {
return
input.
slice
(prefix.
length
);
}
return
input;
}