credentialId); }; /** * Removes all credentials from a virtual authenticator. * * @param {string} authenticatorId the id of the virtual authenticator */ webauthn.removeAllCredentials = function (authenticatorId) { lazy.webauthnService.removeAllCredentials(authenticatorId); }; /** * Sets the "isUserVerified" bit on a virtual authenticator. * * @param {string} authenticatorId the id of the virtual authenticator * @param {bool} isUserVerified the value to set the "isUserVerified" bit to */ webauthn.setUserVerified = function (authenticatorId, isUserVerified) { lazy.webauthnService.setUserVerified(authenticatorId, isUserVerified); }; PK