blob: 79fe673a31d39b49768869b88f7131d53a2bc7a1 (
plain)
1
2
3
4
5
6
7
8
|
/**
* Determine if the browser is capable of Webauthn
*/
export function browserSupportsWebAuthn(): boolean {
return (
window?.PublicKeyCredential !== undefined && typeof window.PublicKeyCredential === 'function'
);
}
|