Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
huggingchat
/
chat-ui
like
1.09k
Running
App
Files
Files
Community
610
b0e461b
chat-ui
/
src
/
lib
/
utils
/
tree
/
isMessageId.ts
nsarrazin
HF staff
Conversation trees (
#223
) (#807)
e6addfc
unverified
9 months ago
raw
Copy download link
history
blame
Safe
153 Bytes
import
type
{
Message
}
from
"$lib/types/Message"
;
export
function
isMessageId
(
id:
string
): id is
Message
[
"id"
] {
return
id.
split
(
"-"
).
length
===
5
;
}