@simplewebauthn/browser
Version:
SimpleWebAuthn for Browsers
14 lines (13 loc) • 333 B
JavaScript
const attachments = ['cross-platform', 'platform'];
/**
* If possible coerce a `string` value into a known `AuthenticatorAttachment`
*/
export function toAuthenticatorAttachment(attachment) {
if (!attachment) {
return;
}
if (attachments.indexOf(attachment) < 0) {
return;
}
return attachment;
}