@neurosity/sdk
Version:
Neurosity SDK
8 lines (7 loc) • 344 B
JavaScript
import { isMaybeWebWorkerContext } from "./isMaybeWebWorkerContext";
export function isWebBluetoothSupported() {
var _a;
return (typeof window !== "undefined" &&
((_a = window === null || window === void 0 ? void 0 : window.navigator) === null || _a === void 0 ? void 0 : _a.bluetooth) &&
!isMaybeWebWorkerContext());
}