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