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
605
9187ced
chat-ui
/
src
/
lib
/
utils
/
trimSuffix.ts
coyotte508
HF staff
✨ Remove endoftext (
#70
)
0abf663
unverified
over 1 year ago
raw
Copy download link
history
blame
Safe
165 Bytes
export
function
trimSuffix
(
input:
string
, end:
string
):
string
{
if
(input.
endsWith
(end)) {
return
input.
slice
(
0
, input.
length
- end.
length
);
}
return
input;
}