diff options
author | Matthew Miller <matthew@millerti.me> | 2021-08-23 20:18:27 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2021-08-23 20:18:27 -0700 |
commit | 808256a244c6e21c2db6b29bfc0cfe24268b460c (patch) | |
tree | 849c619e3bc8e02884739a7c387e937b244fa0eb /packages/browser/src/index.ts | |
parent | 09c073098fc2ea506692de614d578c805b74705a (diff) |
Rename supportsWebAuthn (and fix tests)
Diffstat (limited to 'packages/browser/src/index.ts')
-rw-r--r-- | packages/browser/src/index.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/browser/src/index.ts b/packages/browser/src/index.ts index 1b450d6..c342ddb 100644 --- a/packages/browser/src/index.ts +++ b/packages/browser/src/index.ts @@ -4,6 +4,6 @@ */ import startAttestation from './methods/startAttestation'; import startAssertion from './methods/startAssertion'; -import supportsWebauthn from './helpers/supportsWebauthn'; +import { browserSupportsWebauthn } from './helpers/browserSupportsWebauthn'; -export { startAttestation, startAssertion, supportsWebauthn }; +export { startAttestation, startAssertion, browserSupportsWebauthn }; |