quivr/frontend/app/chat/helpers/isSpeechRecognitionSupported.ts
2023-06-03 20:09:00 +02:00

10 lines
213 B
TypeScript

export function isSpeechRecognitionSupported() {
if (
typeof window !== "undefined" &&
("SpeechRecognition" in window || "webkitSpeechRecognition" in window)
) {
return true;
}
return false;
}