Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
huggingchat/chat-ui
Sanjay98
/
chat-ui
like
0
Sleeping
App
Files
Files
Community
9c038aa
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;
}