blob: 1e2243fae181ff7eed87c9f576a0b3685bd251c8 (
plain)
1
2
3
4
5
6
7
|
/**
* 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);
}
|