diff options
author | Matthew Miller <matthew@millerti.me> | 2022-07-27 22:15:06 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-07-27 22:15:06 -0700 |
commit | 45a22d6b55d1629bc21e93af2fc8ad72f1fa3a54 (patch) | |
tree | 492cb07d7bed10f43cb7fc120c5ebcd5916db62f /packages/server/src/authentication/verifyAuthenticationResponse.ts | |
parent | 2e2bf6b83308d7767ec75bce7e0fa7b0c2dc306d (diff) |
Export named isBase64URLString()
Diffstat (limited to 'packages/server/src/authentication/verifyAuthenticationResponse.ts')
-rw-r--r-- | packages/server/src/authentication/verifyAuthenticationResponse.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/server/src/authentication/verifyAuthenticationResponse.ts b/packages/server/src/authentication/verifyAuthenticationResponse.ts index 6161f92..97a837b 100644 --- a/packages/server/src/authentication/verifyAuthenticationResponse.ts +++ b/packages/server/src/authentication/verifyAuthenticationResponse.ts @@ -10,7 +10,7 @@ import toHash from '../helpers/toHash'; import { convertPublicKeyToPEM } from '../helpers/convertPublicKeyToPEM'; import verifySignature from '../helpers/verifySignature'; import parseAuthenticatorData from '../helpers/parseAuthenticatorData'; -import isBase64URLString from '../helpers/isBase64URLString'; +import { isBase64URLString } from '../helpers/isBase64URLString'; import { parseBackupFlags } from '../helpers/parseBackupFlags'; import { AuthenticationExtensionsAuthenticatorOutputs } from '../helpers/decodeAuthenticatorExtensions'; |