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/convertAAGUIDToString.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/convertAAGUIDToString.ts')
-rw-r--r-- | packages/server/src/helpers/convertAAGUIDToString.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/server/src/helpers/convertAAGUIDToString.ts b/packages/server/src/helpers/convertAAGUIDToString.ts index 0bb6c7d..8375099 100644 --- a/packages/server/src/helpers/convertAAGUIDToString.ts +++ b/packages/server/src/helpers/convertAAGUIDToString.ts @@ -1,4 +1,4 @@ -import * as uint8Array from './uint8Array'; +import * as isoUint8Array from './isoUint8Array'; /** * Convert the aaguid buffer in authData into a UUID string |