Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
muryshev
/
chat-v3
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
chat-v3
/
chat-ui
/
src
/
lib
/
utils
/
trimPrefix.ts
Матенков Андрей
Chat moved from github
39a2f10
over 2 years ago
raw
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;
}