diff options
author | Matthew Miller <matthew@millerti.me> | 2022-11-12 19:11:02 -0800 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-11-12 19:11:02 -0800 |
commit | 6a4ced11ee7d1e872af4215f9aba82c7b64119c2 (patch) | |
tree | 973a5e98c52d094c4d2d9012cbfdb54853fdb38d /packages/server/src/helpers/parseAuthenticatorData.ts | |
parent | ad7818a03b765f41b6115c7ee6259723b3cc786c (diff) |
Rename isomorphic helpers to avoid collision?
I think `helpers/uint8Array.ts` might conflict with CI's ability to resolve the global `Uint8Array` when I `import * as uint8Array`...just a hunch.
I decided to rename all the helpers too to help keep them grouped together.
Diffstat (limited to 'packages/server/src/helpers/parseAuthenticatorData.ts')
-rw-r--r-- | packages/server/src/helpers/parseAuthenticatorData.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/server/src/helpers/parseAuthenticatorData.ts b/packages/server/src/helpers/parseAuthenticatorData.ts index 03bfca0..f45e717 100644 --- a/packages/server/src/helpers/parseAuthenticatorData.ts +++ b/packages/server/src/helpers/parseAuthenticatorData.ts @@ -1,9 +1,9 @@ -import * as cbor from './cbor'; +import * as isoCBOR from './isoCBOR'; import { decodeAuthenticatorExtensions, AuthenticationExtensionsAuthenticatorOutputs, } from './decodeAuthenticatorExtensions'; -import * as uint8Array from './uint8Array'; +import * as isoUint8Array from './isoUint8Array'; import { COSEPublicKey } from './convertCOSEtoPKCS'; /** |