Spaces:
Runtime error
Runtime error
File size: 153 Bytes
2a808d7 | 1 2 3 4 5 6 | import type { Message } from "$lib/types/Message";
export function isMessageId(id: string): id is Message["id"] {
return id.split("-").length === 5;
}
|