blob: 030256febce9ba5012af0d0dd1ca048ca345818a (
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'
);
}
|