mirror of
https://github.com/QuivrHQ/quivr.git
synced 2024-12-16 10:02:30 +03:00
10 lines
213 B
TypeScript
10 lines
213 B
TypeScript
export function isSpeechRecognitionSupported() {
|
|
if (
|
|
typeof window !== "undefined" &&
|
|
("SpeechRecognition" in window || "webkitSpeechRecognition" in window)
|
|
) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|