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