Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
huggingchat
/
chat-ui
like
1.08k
Running
App
Files
Files
Community
604
d779ad0
chat-ui
/
src
/
lib
/
utils
/
trimPrefix.ts
coyotte508
HF staff
✨ Remove endoftext (
#70
)
0abf663
unverified
over 1 year 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;
}