summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/methods
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2022-07-27 22:08:41 -0700
committerMatthew Miller <matthew@millerti.me>2022-07-27 22:08:41 -0700
commitc9dfa8325d67d3c74c7b4b607f162c93eb48eb14 (patch)
tree591721d7aeff4b21280c40d1ca9a7e0d9b4a1570 /packages/browser/src/methods
parentea6ced40a0edbdd7c9be9270bb168b7f117547bd (diff)
Export named base64URLStringToBuffer
Diffstat (limited to 'packages/browser/src/methods')
-rw-r--r--packages/browser/src/methods/startAuthentication.ts2
-rw-r--r--packages/browser/src/methods/startRegistration.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/browser/src/methods/startAuthentication.ts b/packages/browser/src/methods/startAuthentication.ts
index e99629c..b8a5d7a 100644
--- a/packages/browser/src/methods/startAuthentication.ts
+++ b/packages/browser/src/methods/startAuthentication.ts
@@ -5,7 +5,7 @@ import {
} from '@simplewebauthn/typescript-types';
import bufferToBase64URLString from '../helpers/bufferToBase64URLString';
-import base64URLStringToBuffer from '../helpers/base64URLStringToBuffer';
+import { base64URLStringToBuffer } from '../helpers/base64URLStringToBuffer';
import bufferToUTF8String from '../helpers/bufferToUTF8String';
import { browserSupportsWebauthn } from '../helpers/browserSupportsWebauthn';
import { browserSupportsWebAuthnAutofill } from '../helpers/browserSupportsWebAuthnAutofill';
diff --git a/packages/browser/src/methods/startRegistration.ts b/packages/browser/src/methods/startRegistration.ts
index c9749b1..753bd30 100644
--- a/packages/browser/src/methods/startRegistration.ts
+++ b/packages/browser/src/methods/startRegistration.ts
@@ -6,7 +6,7 @@ import {
import utf8StringToBuffer from '../helpers/utf8StringToBuffer';
import bufferToBase64URLString from '../helpers/bufferToBase64URLString';
-import base64URLStringToBuffer from '../helpers/base64URLStringToBuffer';
+import { base64URLStringToBuffer } from '../helpers/base64URLStringToBuffer';
import { browserSupportsWebauthn } from '../helpers/browserSupportsWebauthn';
import toPublicKeyCredentialDescriptor from '../helpers/toPublicKeyCredentialDescriptor';
import { identifyRegistrationError } from '../helpers/identifyRegistrationError';