Credential: isConditionalMediationAvailable() static method
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The isConditionalMediationAvailable()
static method of the Credential
interface returns a Promise
which resolves to false
.
Subclasses of Credential
override this method if they support conditional mediation. See PublicKeyCredential.isConditionalMediationAvailable()
, for example.
Syntax
js
Credential.isConditionalMediationAvailable()
Parameters
None.
Return value
A Promise
which resolves to false
.
Examples
js
await Credential.isConditionalMediationAvailable(); // false
Specifications
Specification |
---|
Credential Management Level 1> # dom-credential-isconditionalmediationavailable> |
Browser compatibility
Loading…