summaryrefslogtreecommitdiffhomepage
path: root/packages/browser/src/helpers/toUint8Array.ts
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2021-04-15 21:34:26 -0700
committerMatthew Miller <matthew@millerti.me>2021-04-15 21:34:26 -0700
commitc8c492572a0f72c6d9b8795a4e37621b5f49d2b9 (patch)
tree204dddd53d07a64ea3f21ee855876dc9af4267be /packages/browser/src/helpers/toUint8Array.ts
parentcb445cd8404af140120260ca77294a70d7202a71 (diff)
Rename toUint8Array to stringToArrayBuffer
Diffstat (limited to 'packages/browser/src/helpers/toUint8Array.ts')
-rw-r--r--packages/browser/src/helpers/toUint8Array.ts7
1 files changed, 0 insertions, 7 deletions
diff --git a/packages/browser/src/helpers/toUint8Array.ts b/packages/browser/src/helpers/toUint8Array.ts
deleted file mode 100644
index 1e2243f..0000000
--- a/packages/browser/src/helpers/toUint8Array.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-/**
- * A helper method to convert an arbitrary string sent from the server to a Uint8Array the
- * authenticator will expect.
- */
-export default function toUint8Array(value: string): Uint8Array {
- return new TextEncoder().encode(value);
-}