diff options
author | Matthew Miller <matthew@millerti.me> | 2022-12-27 21:38:27 -0800 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-12-27 21:38:27 -0800 |
commit | ad5e7119317ab5915c7063b575e2bdd4fe263f9e (patch) | |
tree | a11ddb1a513534c690e6fe883475a5d00e9e08e7 /packages/browser/src/helpers | |
parent | 23df5830ba89d68ca743aa771c8a92d12617018f (diff) |
Lint everything
Diffstat (limited to 'packages/browser/src/helpers')
-rw-r--r-- | packages/browser/src/helpers/toAuthenticatorAttachment.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/browser/src/helpers/toAuthenticatorAttachment.ts b/packages/browser/src/helpers/toAuthenticatorAttachment.ts index 7a2aca0..366cf8f 100644 --- a/packages/browser/src/helpers/toAuthenticatorAttachment.ts +++ b/packages/browser/src/helpers/toAuthenticatorAttachment.ts @@ -5,7 +5,9 @@ const attachments: AuthenticatorAttachment[] = ['cross-platform', 'platform']; /** * If possible coerce a `string` value into a known `AuthenticatorAttachment` */ -export function toAuthenticatorAttachment(attachment: string | null): AuthenticatorAttachment | undefined { +export function toAuthenticatorAttachment( + attachment: string | null, +): AuthenticatorAttachment | undefined { if (!attachment) { return; } |