blob: 02b3c43389e991170dba2aa3915dbd2a63819b6a (
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"
);
}
|