diff options
author | Matthew Miller <matthew@millerti.me> | 2023-08-16 21:53:39 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2023-08-16 21:57:13 -0700 |
commit | 549e08dbed9736b63d827649aaf422958f989609 (patch) | |
tree | 2d767b43f8225f55e047a60468ffefb2f2bbff58 /packages/server/src/helpers/decodeAuthenticatorExtensions.ts | |
parent | c4c6e352686c3ee7a7bd84e0791b9a17ca21dd78 (diff) |
Run `deno fmt` on everything
Diffstat (limited to 'packages/server/src/helpers/decodeAuthenticatorExtensions.ts')
-rw-r--r-- | packages/server/src/helpers/decodeAuthenticatorExtensions.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/server/src/helpers/decodeAuthenticatorExtensions.ts b/packages/server/src/helpers/decodeAuthenticatorExtensions.ts index 457ecf5..88e0edc 100644 --- a/packages/server/src/helpers/decodeAuthenticatorExtensions.ts +++ b/packages/server/src/helpers/decodeAuthenticatorExtensions.ts @@ -1,4 +1,4 @@ -import { isoCBOR } from './iso/index.ts'; +import { isoCBOR } from "./iso/index.ts"; /** * Convert authenticator extension data buffer to a proper object @@ -43,7 +43,9 @@ export type UVMAuthenticatorOutput = { * `Object.entries()`. This method will recursively make sure that all Maps are converted into * basic objects. */ -function convertMapToObjectDeep(input: Map<string, unknown>): { [key: string]: unknown } { +function convertMapToObjectDeep( + input: Map<string, unknown>, +): { [key: string]: unknown } { const mapped: { [key: string]: unknown } = {}; for (const [key, value] of input) { |