summaryrefslogtreecommitdiffhomepage
path: root/packages/server/src/helpers/iso/isoUint8Array.ts
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2023-08-16 21:53:39 -0700
committerMatthew Miller <matthew@millerti.me>2023-08-16 21:57:13 -0700
commit549e08dbed9736b63d827649aaf422958f989609 (patch)
tree2d767b43f8225f55e047a60468ffefb2f2bbff58 /packages/server/src/helpers/iso/isoUint8Array.ts
parentc4c6e352686c3ee7a7bd84e0791b9a17ca21dd78 (diff)
Run `deno fmt` on everything
Diffstat (limited to 'packages/server/src/helpers/iso/isoUint8Array.ts')
-rw-r--r--packages/server/src/helpers/iso/isoUint8Array.ts13
1 files changed, 7 insertions, 6 deletions
diff --git a/packages/server/src/helpers/iso/isoUint8Array.ts b/packages/server/src/helpers/iso/isoUint8Array.ts
index bc5f51f..6a48063 100644
--- a/packages/server/src/helpers/iso/isoUint8Array.ts
+++ b/packages/server/src/helpers/iso/isoUint8Array.ts
@@ -15,10 +15,10 @@ export function areEqual(array1: Uint8Array, array2: Uint8Array): boolean {
* A replacement for `Buffer.toString('hex')`
*/
export function toHex(array: Uint8Array): string {
- const hexParts = Array.from(array, (i) => i.toString(16).padStart(2, '0'));
+ const hexParts = Array.from(array, (i) => i.toString(16).padStart(2, "0"));
// adce000235bcc60a648b0b25f1f05503
- return hexParts.join('');
+ return hexParts.join("");
}
/**
@@ -31,10 +31,11 @@ export function fromHex(hex: string): Uint8Array {
return Uint8Array.from([]);
}
- const isValid = hex.length !== 0 && hex.length % 2 === 0 && !/[^a-fA-F0-9]/u.test(hex);
+ const isValid = hex.length !== 0 && hex.length % 2 === 0 &&
+ !/[^a-fA-F0-9]/u.test(hex);
if (!isValid) {
- throw new Error('Invalid hex string');
+ throw new Error("Invalid hex string");
}
const byteStrings = hex.match(/.{1,2}/g) ?? [];
@@ -63,7 +64,7 @@ export function concat(arrays: Uint8Array[]): Uint8Array {
* Convert bytes into a UTF-8 string
*/
export function toUTF8String(array: Uint8Array): string {
- const decoder = new globalThis.TextDecoder('utf-8');
+ const decoder = new globalThis.TextDecoder("utf-8");
return decoder.decode(array);
}
@@ -79,7 +80,7 @@ export function fromUTF8String(utf8String: string): Uint8Array {
* Convert an ASCII string to Uint8Array
*/
export function fromASCIIString(value: string): Uint8Array {
- return Uint8Array.from(value.split('').map((x) => x.charCodeAt(0)));
+ return Uint8Array.from(value.split("").map((x) => x.charCodeAt(0)));
}
/**