diff options
author | Matthew Miller <matthew@millerti.me> | 2023-09-27 23:04:47 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-27 23:04:47 -0700 |
commit | f4af75d1f2f88499dc8c927cb08264c144428beb (patch) | |
tree | 3190434f25a3cc3bc61d805e66d42fec542d9d21 /packages/browser/src/index.ts | |
parent | d9f85dbbffda27f27fbf8fa2341fb67aca93e201 (diff) | |
parent | 9753ee22b957ce1d94382e8af604efbc11eaebd8 (diff) |
Merge pull request #444 from MasterKale/feat/export-base64url-helpers-browser
feat/export-base64url-helpers-browser
Diffstat (limited to 'packages/browser/src/index.ts')
-rw-r--r-- | packages/browser/src/index.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/browser/src/index.ts b/packages/browser/src/index.ts index 77cd491..9e75d75 100644 --- a/packages/browser/src/index.ts +++ b/packages/browser/src/index.ts @@ -7,10 +7,14 @@ import { startAuthentication } from './methods/startAuthentication'; import { browserSupportsWebAuthn } from './helpers/browserSupportsWebAuthn'; import { platformAuthenticatorIsAvailable } from './helpers/platformAuthenticatorIsAvailable'; import { browserSupportsWebAuthnAutofill } from './helpers/browserSupportsWebAuthnAutofill'; +import { base64URLStringToBuffer } from './helpers/base64URLStringToBuffer'; +import { bufferToBase64URLString } from './helpers/bufferToBase64URLString'; export { + base64URLStringToBuffer, browserSupportsWebAuthn, browserSupportsWebAuthnAutofill, + bufferToBase64URLString, platformAuthenticatorIsAvailable, startAuthentication, startRegistration, |