Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
BetterAPI/BetterChat
BetterAPI
/
BetterChat_new
like
1
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
main
BetterChat_new
/
src
/
lib
/
utils
/
trimPrefix.ts
BetterAPI
Duplicate from BetterAPI/BetterChat
166a6c0
about 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;
}